diff options
author | Eric Andersen <andersen@codepoet.org> | 2007-03-14 03:12:22 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2007-03-14 03:12:22 +0000 |
commit | 15177a6e9566e2929e77eda44eff5116b6f0e587 (patch) | |
tree | 33c9c8322e5331ab9a4672a8aad7aa3927c14f69 /package/zlib/zlib.mk | |
parent | 85d7f6f05f87b52a56b603c95e68498f04877f64 (diff) | |
download | buildroot-novena-15177a6e9566e2929e77eda44eff5116b6f0e587.tar.gz buildroot-novena-15177a6e9566e2929e77eda44eff5116b6f0e587.zip |
yet more LDFLAGS handling fixups
Diffstat (limited to 'package/zlib/zlib.mk')
-rw-r--r-- | package/zlib/zlib.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/zlib/zlib.mk b/package/zlib/zlib.mk index fd40ea26a..76a2291f7 100644 --- a/package/zlib/zlib.mk +++ b/package/zlib/zlib.mk @@ -24,8 +24,8 @@ $(ZLIB_DIR)/.source: $(DL_DIR)/$(ZLIB_SOURCE) $(ZLIB_DIR)/.configured: $(ZLIB_DIR)/.source (cd $(ZLIB_DIR); \ $(TARGET_CONFIGURE_OPTS) \ - CFLAGS="$(ZLIB_CFLAGS)" \ - LDFLAGS="$(TARGET_LDFLAGS)" + CFLAGS="$(TARGET_CFLAGS) $(ZLIB_CFLAGS)" \ + LDFLAGS="$(TARGET_LDFLAGS)" \ ./configure \ --shared \ --prefix=/usr \ |