Commit a96be19b authored by Peter Korsgaard's avatar Peter Korsgaard
Browse files

package: remove redundant DISABLE_{IPV6,NLS,LARGEFILE} configure args



Makefile.autotools.in automatically adds these to the configure invocation,
so there's no need to explicitly list them.

Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent 6a3a58f1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@ BIND_TARGET_BINS = dig host nslookup nsupdate
BIND_TARGET_LIBS = libbind9.* libdns.* libisccc.* libisccfg.* libisc.* liblwres.*
BIND_CONF_ENV =	BUILD_CC="$(TARGET_CC)" \
		BUILD_CFLAGS="$(TARGET_CFLAGS)"
BIND_CONF_OPT =	$(DISABLE_IPV6) \
BIND_CONF_OPT =	\
		--sysconfdir=/etc \
		--localstatedir=/var \
		--with-randomdev=/dev/urandom \
+1 −3
Original line number Diff line number Diff line
@@ -21,9 +21,7 @@ E2FSPROGS_CONF_OPT = \
	--disable-resizer \
	--enable-fsck \
	--disable-e2initrd-helper \
	--disable-testio-debug \
	$(DISABLE_NLS) \
	$(DISABLE_LARGEFILE)
	--disable-testio-debug

E2FSPROGS_MAKE_OPT = \
	LDCONFIG=true
+1 −2
Original line number Diff line number Diff line
@@ -12,8 +12,7 @@ LXDOOM_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install

LXDOOM_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(GNU_TARGET_NAME) \
		--build=$(GNU_HOST_NAME) --prefix=/usr \
		--includedir=/usr/include --enable-shared \
		$(DISABLE_NLS)
		--includedir=/usr/include --enable-shared

LXDOOM_DEPENDENCIES = xserver_xorg-server

+1 −2
Original line number Diff line number Diff line
@@ -6,8 +6,7 @@
GREP_VERSION:=2.5.3
GREP_SOURCE:=grep-$(GREP_VERSION).tar.bz2
GREP_SITE:=$(BR2_GNU_MIRROR)/grep
GREP_CONF_OPT = --disable-perl-regexp --without-included-regex \
	$(DISABLE_NLS) $(DISABLE_LARGEFILE)
GREP_CONF_OPT = --disable-perl-regexp --without-included-regex

GREP_DEPENDENCIES = $(if $(BR2_ENABLE_LOCALE),gettext libintl)

+1 −2
Original line number Diff line number Diff line
@@ -7,8 +7,7 @@ LIBCURL_VERSION = 7.19.2
LIBCURL_SOURCE = curl-$(LIBCURL_VERSION).tar.bz2
LIBCURL_SITE = http://curl.haxx.se/download/
LIBCURL_INSTALL_STAGING = YES
LIBCURL_CONF_OPT = --disable-verbose --disable-manual --enable-hidden-symbols \
		   $(DISABLE_IPV6)
LIBCURL_CONF_OPT = --disable-verbose --disable-manual --enable-hidden-symbols

ifeq ($(BR2_PACKAGE_OPENSSL),y)
LIBCURL_DEPENDENCIES += openssl
Loading