diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-02-12 08:10:40 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-02-12 08:10:40 +0000 |
commit | d322f37644811964ee7da64c4d3fcffd8898869f (patch) | |
tree | f7e2ba6c81659bb3db7257d894df9bffe7507db0 /make/libtool.mk | |
parent | e03eb9438ec2a2a8036f025df8cd112c1b686c63 (diff) | |
download | buildroot-novena-d322f37644811964ee7da64c4d3fcffd8898869f.tar.gz buildroot-novena-d322f37644811964ee7da64c4d3fcffd8898869f.zip |
Lots and lots of changes
Diffstat (limited to 'make/libtool.mk')
-rw-r--r-- | make/libtool.mk | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/make/libtool.mk b/make/libtool.mk index b1871eaa9..6043f5285 100644 --- a/make/libtool.mk +++ b/make/libtool.mk @@ -21,7 +21,7 @@ $(LIBTOOL_DIR)/.unpacked: $(DL_DIR)/$(LIBTOOL_SOURCE) $(LIBTOOL_DIR)/.configured: $(LIBTOOL_DIR)/.unpacked (cd $(LIBTOOL_DIR); rm -rf config.cache; \ - PATH=$(STAGING_DIR)/bin:$$PATH CC=$(TARGET_CC) \ + PATH=$(TARGET_PATH) CC=$(TARGET_CC) \ ./configure \ --target=$(GNU_TARGET_NAME) \ --prefix=/usr \ @@ -43,7 +43,6 @@ $(LIBTOOL_DIR)/$(LIBTOOL_BINARY): $(LIBTOOL_DIR)/.configured touch -c $(LIBTOOL_DIR)/$(LIBTOOL_BINARY) $(TARGET_DIR)/$(LIBTOOL_TARGET_BINARY): $(LIBTOOL_DIR)/$(LIBTOOL_BINARY) - PATH=$(STAGING_DIR)/bin:$$PATH CC=$(TARGET_CC) \ $(MAKE) \ prefix=$(TARGET_DIR)/usr \ exec_prefix=$(TARGET_DIR)/usr \ |