diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-08-22 16:02:22 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-08-22 16:02:22 +0000 |
commit | c8db158fe31ef1749cd85645ac6792ecbe10713d (patch) | |
tree | bb9d75d6984bc592da0e1678aa017f9869bf3978 | |
parent | e3f14912b0bfb9059ca3c7381e4b8ecd4a23a81c (diff) | |
download | buildroot-novena-c8db158fe31ef1749cd85645ac6792ecbe10713d.tar.gz buildroot-novena-c8db158fe31ef1749cd85645ac6792ecbe10713d.zip |
- pass TARGET_CONFIGURE_ARGS
-rw-r--r-- | package/Makefile.autotools.in | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/package/Makefile.autotools.in b/package/Makefile.autotools.in index 0e6e544b2..61b5fd16b 100644 --- a/package/Makefile.autotools.in +++ b/package/Makefile.autotools.in @@ -181,10 +181,8 @@ $(BUILD_DIR)/%/.stamp_configured: cd $(@D)/$($(PKG)_SUBDIR) && \ rm -f config.cache && \ $(TARGET_CONFIGURE_OPTS) \ - CFLAGS="$(TARGET_CFLAGS)" \ - CXXFLAGS="$(TARGET_CXXFLAGS)" \ - LDFLAGS="$(TARGET_LDFLAGS)" \ - $($(PKG)_CONF_ENV) \ + $(TARGET_CONFIGURE_ARGS) \ + $($(PKG)_CONF_ENV) \ ./configure \ --target=$(GNU_TARGET_NAME) \ --host=$(GNU_TARGET_NAME) \ |