diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-08-06 22:10:29 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-08-06 22:10:29 +0000 |
commit | 78202d191b1e0332bd03740e83a3e8c07819810d (patch) | |
tree | bc06ccda968103523489e585554a5750bf412657 /package/lua | |
parent | 05e6976da2fd9ee5d91bfe8b1aaa2e803158b03a (diff) |
use $(FPIC) in a few places where it matters
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12225 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/lua')
-rw-r--r-- | package/lua/Makefile | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/package/lua/Makefile b/package/lua/Makefile index d29b3235d..189435868 100644 --- a/package/lua/Makefile +++ b/package/lua/Makefile @@ -24,14 +24,6 @@ PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install include $(INCLUDE_DIR)/package.mk -ifeq ($(ARCH),powerpc) - FPIC:=-fPIC -endif -ifeq ($(ARCH),x86_64) - FPIC:=-fPIC -endif - - define Package/lua/Default SUBMENU:=LUA SECTION:=lang @@ -95,7 +87,7 @@ endef define Build/Configure endef -TARGET_CFLAGS += -DLUA_USE_LINUX +TARGET_CFLAGS += -DLUA_USE_LINUX $(FPIC) define Build/Compile $(MAKE) -C $(PKG_BUILD_DIR) \ @@ -104,7 +96,7 @@ define Build/Compile AR="$(TARGET_CROSS)ar rcu" \ RANLIB="$(TARGET_CROSS)ranlib" \ INSTALL_ROOT=/usr \ - CFLAGS="$(TARGET_CPPFLAGS) $(TARGET_CFLAGS) $(FPIC)" \ + CFLAGS="$(TARGET_CPPFLAGS) $(TARGET_CFLAGS)" \ MYLDFLAGS="$(TARGET_LDFLAGS)" \ PKG_VERSION=$(PKG_VERSION) \ all linux |