diff options
author | Nicolas Thill <nico@openwrt.org> | 2007-03-28 00:35:26 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2007-03-28 00:35:26 +0000 |
commit | b5ecf6f203ae783e41bd66dff8adf351cf189e56 (patch) | |
tree | d81132cca6f4e52af44f99c02a8bdcace7614854 /package/wpa_supplicant | |
parent | d143f05cfde0ba3962261916bb0ba679fc4a1421 (diff) | |
download | upstream-b5ecf6f203ae783e41bd66dff8adf351cf189e56.tar.gz upstream-b5ecf6f203ae783e41bd66dff8adf351cf189e56.tar.bz2 upstream-b5ecf6f203ae783e41bd66dff8adf351cf189e56.zip |
replace common -I and -L search flags with TARGET_CPPFLAGS and TARGET_LDFLAGS
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6735 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/wpa_supplicant')
-rw-r--r-- | package/wpa_supplicant/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/wpa_supplicant/Makefile b/package/wpa_supplicant/Makefile index fb11085cfb..6448145565 100644 --- a/package/wpa_supplicant/Makefile +++ b/package/wpa_supplicant/Makefile @@ -47,8 +47,8 @@ define Build/Compile $(MAKE) -C $(PKG_BUILD_DIR) \ CC="$(TARGET_CC)" \ KERNEL=$(LINUX_DIR) \ - CPPFLAGS="-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include" \ - LDFLAGS=" -L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib" \ + CPPFLAGS="$(TARGET_CPPFLAGS)" \ + LDFLAGS="$(TARGET_LDFLAGS)" \ all $(STRIP) $(PKG_BUILD_DIR)/wpa_supplicant $(STRIP) $(PKG_BUILD_DIR)/wpa_cli |