]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
package/patch: fix xattr option
authorYann E. MORIN <yann.morin.1998@free.fr>
Sun, 6 May 2018 11:57:51 +0000 (13:57 +0200)
committerPeter Korsgaard <peter@korsgaard.com>
Sun, 6 May 2018 15:32:24 +0000 (17:32 +0200)
The name of the configure option is, and has always been,
 --enable-xattr, not --enable-attr. Otherwise, configure
whines:
    configure: WARNING: unrecognized options: --enable-attr

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
package/patch/patch.mk

index 33f0039d60141e3d2df44bc160062c4fb32f1398..d581682c7094edb949e9aa979e9c375a81e0db56 100644 (file)
@@ -11,10 +11,10 @@ PATCH_LICENSE = GPL-3.0+
 PATCH_LICENSE_FILES = COPYING
 
 ifeq ($(BR2_PACKAGE_ATTR),y)
-PATCH_CONF_OPTS += --enable-attr
+PATCH_CONF_OPTS += --enable-xattr
 PATCH_DEPENDENCIES += attr
 else
-PATCH_CONF_OPTS += --disable-attr
+PATCH_CONF_OPTS += --disable-xattr
 endif
 
 $(eval $(autotools-package))