use $(FPIC) in a few places where it matters

SVN-Revision: 12225
This commit is contained in:
Felix Fietkau
2008-08-06 22:10:29 +00:00
parent 14ac8769b2
commit e9ea28b0af
12 changed files with 18 additions and 12 deletions

View File

@@ -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