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/dbus-glib/dbus-glib.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/dbus-glib/dbus-glib.mk')
-rw-r--r-- | package/dbus-glib/dbus-glib.mk | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/package/dbus-glib/dbus-glib.mk b/package/dbus-glib/dbus-glib.mk index 042bd87f2..3a45846ec 100644 --- a/package/dbus-glib/dbus-glib.mk +++ b/package/dbus-glib/dbus-glib.mk @@ -28,8 +28,6 @@ $(DBUS_GLIB_DIR)/.configured: $(DBUS_GLIB_DIR)/.unpacked /usr/bin/pkg-config ac_cv_have_abstract_sockets=yes \ ac_cv_func_posix_getpwnam_r=yes \ have_abstract_sockets=yes \ - CFLAGS="$(TARGET_CFLAGS)" \ - LDFLAGS="$(TARGET_LDFLAGS)" \ DBUS_CFLAGS="-I$(STAGING_DIR)/usr/include/dbus-1.0 -I$(STAGING_DIR)/usr/lib/dbus-1.0/include" \ DBUS_LIBS="$(STAGING_DIR)/usr/lib/libdbus-1.so" \ DBUS_GLIB_CFLAGS="-I$(STAGING_DIR)/include/glib-2.0 -I$(STAGING_DIR)/lib/glib-2.0/include" \ |