mirror of https://github.com/hak5/openwrt-owl.git
parent
d6299cafc8
commit
edc1c4ecda
|
@ -65,35 +65,7 @@ define Package/libfuse
|
||||||
This package contains the FUSE shared library, needed by other programs.
|
This package contains the FUSE shared library, needed by other programs.
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Build/Configure
|
CONFIGURE_ARGS += \
|
||||||
(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) \
|
|
||||||
CFLAGS="$(TARGET_CFLAGS)" \
|
|
||||||
./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-shared \
|
||||||
--enable-static \
|
--enable-static \
|
||||||
--disable-rpath \
|
--disable-rpath \
|
||||||
|
@ -103,8 +75,17 @@ define Build/Configure
|
||||||
--disable-example \
|
--disable-example \
|
||||||
--disable-auto-modprobe \
|
--disable-auto-modprobe \
|
||||||
--with-kernel="$(LINUX_DIR)" \
|
--with-kernel="$(LINUX_DIR)" \
|
||||||
--disable-mtab \
|
--disable-mtab
|
||||||
);
|
|
||||||
|
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 ; \
|
||||||
|
)
|
||||||
|
$(call Build/Configure/Default)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Build/Compile
|
define Build/Compile
|
||||||
|
|
Loading…
Reference in New Issue