mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-09 16:01:54 -09:00
package/opkg: fix --without-xattr configure option typo
Commitefe93b34e"package/opkg: bump to version 0.7.0" [1] introduced a use of --without-xattrs (with an extra 's') configure option. When compiling opkg, the configure step show the warning: configure: WARNING: unrecognized options: ... --without-xattrs The actual option name is "--without-xattr" (without an extra 's'). See [2]. This commit fixes the typo. [1]efe93b34ec[2] https://git.yoctoproject.org/opkg/tree/configure.ac?h=v0.7.0#n167 Signed-off-by: Julien Olivain <ju.o@free.fr> Signed-off-by: Arnout Vandecappelle <arnout@mind.be>
This commit is contained in:
committed by
Arnout Vandecappelle
parent
e35c5ee607
commit
7025f76274
@@ -13,7 +13,7 @@ OPKG_INSTALL_STAGING = YES
|
||||
OPKG_CONF_OPTS = \
|
||||
--enable-sha256 \
|
||||
--without-acl \
|
||||
--without-xattrs
|
||||
--without-xattr
|
||||
|
||||
ifeq ($(BR2_PACKAGE_OPKG_GPG_SIGN),y)
|
||||
OPKG_CONF_OPTS += --enable-gpg
|
||||
|
||||
Reference in New Issue
Block a user