summaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authornico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-03-28 00:29:17 +0000
committernico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-03-28 00:29:17 +0000
commitab261bbbf32330d174e035ea5037066ba5eb185a (patch)
tree372f938464ca64cbdeac6791e46b152351524946 /package
parentc3d057408613580da12a0d7c52b94f8864d9fa9b (diff)
cleanup ntfs-3g makefile (remove kernel.mk include, unused configure options...)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6734 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rw-r--r--package/ntfs-3g/Makefile49
1 files changed, 3 insertions, 46 deletions
diff --git a/package/ntfs-3g/Makefile b/package/ntfs-3g/Makefile
index 5c07adaa7..686c0e3c9 100644
--- a/package/ntfs-3g/Makefile
+++ b/package/ntfs-3g/Makefile
@@ -7,7 +7,6 @@
# $Id$
include $(TOPDIR)/rules.mk
-include $(INCLUDE_DIR)/kernel.mk
PKG_NAME:=ntfs-3g
PKG_VERSION:=1.0
@@ -31,51 +30,9 @@ define Package/ntfs-3g
URL:=http://www.ntfs-3g.org
endef
-define Build/Configure
- (cd $(PKG_BUILD_DIR); rm -f config.cache; \
- touch configure.in ; \
- touch aclocal.m4 ; \
- touch Makefile.in ; \
- touch include/config.h.in ; \
- touch configure ; \
- $(TARGET_CONFIGURE_OPTS) \
- PKG_CONFIG_PATH="$(STAGING_DIR)/usr/lib/pkgconfig" \
- PKG_CONFIG_LIBDIR="$(STAGING_DIR)/usr/lib/pkgconfig" \
- CPPFLAGS="-I$(STAGING_DIR)/usr/include" \
- CFLAGS="$(TARGET_CFLAGS)" \
- LDFLAGS="-L$(STAGING_DIR)/usr/lib" \
- ./configure \
- --target=$(GNU_TARGET_NAME) \
- --host=$(GNU_TARGET_NAME) \
- --build=$(GNU_HOST_NAME) \
- --program-prefix="" \
- --program-suffix="" \
- --prefix=/usr \
- --exec-prefix=/usr \
- --bindir=/usr/bin \
- --datadir=/usr/share \
- --includedir=/usr/include \
- --infodir=/usr/share/info \
- --libdir=/usr/lib \
- --libexecdir=/usr/lib \
- --localstatedir=/var \
- --mandir=/usr/share/man \
- --sbindir=/usr/sbin \
- --sysconfdir=/etc \
- $(DISABLE_LARGEFILE) \
- $(DISABLE_NLS) \
- --enable-shared \
- --enable-static \
- --disable-rpath \
- --enable-kernel-module \
- --enable-lib \
- --enable-util \
- --disable-example \
- --disable-auto-modprobe \
- --with-kernel="$(LINUX_DIR)" \
- --disable-mtab \
- );
-endef
+CONFIGURE_ARGS += \
+ --enable-shared \
+ --enable-static \
define Build/Compile
$(MAKE) -C $(PKG_BUILD_DIR) \