diff options
author | Yann E. MORIN <yann.morin.1998@free.fr> | 2018-05-06 13:57:51 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2018-05-06 17:32:24 +0200 |
commit | 990fff065c915ecce1196adc283252f8d192d54a (patch) | |
tree | 09e3745cf55e33cecc41a2eef1734cb2764a8d91 /package/patch/patch.mk | |
parent | 7987bbe5713baa505b5dc464b718399a79fbcf2f (diff) | |
download | buildroot-990fff065c915ecce1196adc283252f8d192d54a.tar.gz buildroot-990fff065c915ecce1196adc283252f8d192d54a.zip |
package/patch: fix xattr option
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>
Diffstat (limited to 'package/patch/patch.mk')
-rw-r--r-- | package/patch/patch.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/patch/patch.mk b/package/patch/patch.mk index 33f0039d60..d581682c70 100644 --- a/package/patch/patch.mk +++ b/package/patch/patch.mk @@ -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)) |