diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2007-07-06 04:26:32 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2007-07-06 04:26:32 +0000 |
commit | 9a4ca08e5ffee842d0ede78c4ce9f745f0ca42b6 (patch) | |
tree | 3f0ef80e7c44f59eae59c0fdfb9b56882d454112 /package/directfb/directfb.mk | |
parent | 9fba54740004859fd7e0936cda64d01c2b48633b (diff) | |
download | buildroot-novena-9a4ca08e5ffee842d0ede78c4ce9f745f0ca42b6.tar.gz buildroot-novena-9a4ca08e5ffee842d0ede78c4ce9f745f0ca42b6.zip |
Remove usage of TARGET_LDFLAGS all together. Both TARGET_CFLAGS and TARGET_LDFLAGS are passed with the compilers and linker respectively so that we can pass CFLAGS and LDFLAGS on a per-package basis which was not possible previously and a number of packages failed to build. TARGET_CFLAGS usage in package makefiles will be removed next.
Diffstat (limited to 'package/directfb/directfb.mk')
-rw-r--r-- | package/directfb/directfb.mk | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/package/directfb/directfb.mk b/package/directfb/directfb.mk index bbef83559..26c55122b 100644 --- a/package/directfb/directfb.mk +++ b/package/directfb/directfb.mk @@ -23,8 +23,6 @@ $(DIRECTFB_DIR)/.configured: $(DIRECTFB_DIR)/.unpacked (cd $(DIRECTFB_DIR); \ $(TARGET_CONFIGURE_OPTS) \ $(TARGET_CONFIGURE_ARGS) \ - CFLAGS="$(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include" \ - LDFLAGS="$(TARGET_LDFLAGS)" \ ac_cv_header_linux_wm97xx_h=no \ ac_cv_header_linux_sisfb_h=no \ ac_cv_header_asm_page_h=no \ |