diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-03-04 19:16:19 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-03-04 19:16:19 +0000 |
commit | 1fc3f2f3de0f731c2869a48f951557eed6704218 (patch) | |
tree | e5fa011e92f78d0feab200dde260ba21561e76d0 /make/socat.mk | |
parent | 36830baea210bba2490f643a1d147bf9adb2b62b (diff) | |
download | buildroot-novena-1fc3f2f3de0f731c2869a48f951557eed6704218.tar.gz buildroot-novena-1fc3f2f3de0f731c2869a48f951557eed6704218.zip |
Rework things to ensure we are cross compiling. Teach problematic
apps like openssh to cross compile. This eliminates the need for
the magic ld-uClibc.so.0 symlink in /lib
Diffstat (limited to 'make/socat.mk')
-rw-r--r-- | make/socat.mk | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/make/socat.mk b/make/socat.mk index 92344d07c..35bc6326f 100644 --- a/make/socat.mk +++ b/make/socat.mk @@ -27,9 +27,11 @@ $(SOCAT_WORKDIR)/Makefile: $(SOCAT_DIR)/.unpacked rm -f $(SOCAT_WORKDIR)/Makefile mkdir -p $(SOCAT_WORKDIR) (cd $(SOCAT_WORKDIR); rm -rf config.cache; \ - PATH=$(TARGET_PATH) CC=$(TARGET_CC) \ + $(TARGET_CONFIGURE_OPTS) \ $(SOCAT_DIR)/configure \ --target=$(GNU_TARGET_NAME) \ + --host=$(GNU_TARGET_NAME) \ + --build=$(GNU_HOST_NAME) \ --prefix=/usr \ --exec-prefix=/usr \ --bindir=/usr/bin \ |