diff options
author | Nicolas Thill <nico@openwrt.org> | 2009-02-24 00:08:08 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2009-02-24 00:08:08 +0000 |
commit | 8ae9e2cf0fa0d71682948bb7ba341c07269c1618 (patch) | |
tree | 4c81f1a0e5b29b15d3f52653d6b1b8aff729b977 /package/broadcom-wl | |
parent | 6ef71d6d6c8be2d605cba94a75c54cfd904afcad (diff) | |
download | upstream-8ae9e2cf0fa0d71682948bb7ba341c07269c1618.tar.gz upstream-8ae9e2cf0fa0d71682948bb7ba341c07269c1618.tar.bz2 upstream-8ae9e2cf0fa0d71682948bb7ba341c07269c1618.zip |
[package] replace some -I & -L flags with $(TARGET_CPPFLAGS) & $(TARGET_LDFLAGS) when appropriate
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@14651 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/broadcom-wl')
-rw-r--r-- | package/broadcom-wl/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/broadcom-wl/Makefile b/package/broadcom-wl/Makefile index e49fc50a88..2cb511f969 100644 --- a/package/broadcom-wl/Makefile +++ b/package/broadcom-wl/Makefile @@ -161,7 +161,7 @@ define Build/Compile $(TARGET_CONFIGURE_OPTS) \ CFLAGS="$(TARGET_CFLAGS) -I. -I$(PKG_BUILD_DIR)/include -Dlinux=1" \ all - $(TARGET_CC) -o $(PKG_BUILD_DIR)/nas $(PKG_BUILD_DIR)/nas_exe.o -L$(STAGING_DIR)/usr/lib -lnvram $(PKG_BUILD_DIR)/router/shared/libshared.a + $(TARGET_CC) -o $(PKG_BUILD_DIR)/nas $(PKG_BUILD_DIR)/nas_exe.o $(TARGET_LDFLAGS) -lnvram $(PKG_BUILD_DIR)/router/shared/libshared.a $(TARGET_CC) -o $(PKG_BUILD_DIR)/wl $(PKG_BUILD_DIR)/wl_exe.o endef |