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/sudo/sudo.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/sudo/sudo.mk')
-rw-r--r-- | package/sudo/sudo.mk | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/package/sudo/sudo.mk b/package/sudo/sudo.mk index a14b6d4bf..02db27580 100644 --- a/package/sudo/sudo.mk +++ b/package/sudo/sudo.mk @@ -25,8 +25,6 @@ $(SUDO_DIR)/.configured: $(SUDO_DIR)/.unpacked $(SUDO_CONFIG_FILE) $(TARGET_CONFIGURE_OPTS) \ $(TARGET_CONFIGURE_ARGS) \ ./configure \ - CFLAGS="$(TARGET_CFLAGS)" \ - LDFLAGS="$(TARGET_LDFLAGS)" \ --target=$(GNU_TARGET_NAME) \ --host=$(GNU_TARGET_NAME) \ --build=$(GNU_HOST_NAME) \ |