diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-01-19 06:07:22 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-01-19 06:07:22 +0000 |
commit | a9bfe856cf5b524f157cda222c8b2d07f1463be9 (patch) | |
tree | 28e6fb6223262a52d352b9a318897b5e33f26360 /make/pppd.mk | |
parent | b885ae776f81c216927d5ef866ddf09b6778a49b (diff) | |
download | buildroot-novena-a9bfe856cf5b524f157cda222c8b2d07f1463be9.tar.gz buildroot-novena-a9bfe856cf5b524f157cda222c8b2d07f1463be9.zip |
Change from using "TARGET_CC1" to just plan "TARGET_CC"
which is a bit more sensible.
Diffstat (limited to 'make/pppd.mk')
-rw-r--r-- | make/pppd.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/make/pppd.mk b/make/pppd.mk index 89eba4501..2daf27a66 100644 --- a/make/pppd.mk +++ b/make/pppd.mk @@ -26,7 +26,7 @@ $(PPPD_DIR)/.unpacked: $(DL_DIR)/$(PPPD_SOURCE) $(PPPD_DIR)/.configured: $(PPPD_DIR)/.unpacked (cd $(PPPD_DIR); rm -rf config.cache; \ - PATH=$(STAGING_DIR)/bin:$$PATH CC=$(TARGET_CC1) \ + PATH=$(STAGING_DIR)/bin:$$PATH CC=$(TARGET_CC) \ ./configure \ --target=$(GNU_TARGET_NAME) \ --prefix=/usr \ @@ -44,10 +44,10 @@ $(PPPD_DIR)/.configured: $(PPPD_DIR)/.unpacked touch $(PPPD_DIR)/.configured $(PPPD_DIR)/$(PPPD_BINARY): $(PPPD_DIR)/.configured - $(MAKE) CC=$(TARGET_CC1) -C $(PPPD_DIR) + $(MAKE) CC=$(TARGET_CC) -C $(PPPD_DIR) $(TARGET_DIR)/$(PPPD_TARGET_BINARY): $(PPPD_DIR)/$(PPPD_BINARY) - $(MAKE) DESTDIR=$(TARGET_DIR) CC=$(TARGET_CC1) -C $(PPPD_DIR) install + $(MAKE) DESTDIR=$(TARGET_DIR) CC=$(TARGET_CC) -C $(PPPD_DIR) install rm -rf $(TARGET_DIR)/share/locale $(TARGET_DIR)/usr/info \ $(TARGET_DIR)/usr/man $(TARGET_DIR)/usr/share/doc @@ -57,7 +57,7 @@ pppd-clean: rm -f $(TARGET_DIR)/usr/sbin/pppd rm -f $(TARGET_DIR)/usr/sbin/chat rm -rf $(TARGET_DIR)/etc/ppp - $(MAKE) DESTDIR=$(TARGET_DIR) CC=$(TARGET_CC1) -C $(PPPD_DIR) uninstall + $(MAKE) DESTDIR=$(TARGET_DIR) CC=$(TARGET_CC) -C $(PPPD_DIR) uninstall -$(MAKE) -C $(PPPD_DIR) clean pppd-dirclean: |