diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2015-04-03 15:29:58 +0000 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2015-04-03 15:29:58 +0000 |
commit | b5ce7dfca8a35dd7d67d58973a78321775326458 (patch) | |
tree | b1c481ceff49642894c6602394ed2958aacda2ab /sys-fs/encfs | |
parent | Version bump and remove older stables. Bug #544954. (diff) | |
download | gentoo-2-b5ce7dfca8a35dd7d67d58973a78321775326458.tar.gz gentoo-2-b5ce7dfca8a35dd7d67d58973a78321775326458.tar.bz2 gentoo-2-b5ce7dfca8a35dd7d67d58973a78321775326458.zip |
Economize a bit on the syntax.
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
Diffstat (limited to 'sys-fs/encfs')
-rw-r--r-- | sys-fs/encfs/ChangeLog | 5 | ||||
-rw-r--r-- | sys-fs/encfs/encfs-1.8.1.ebuild | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/sys-fs/encfs/ChangeLog b/sys-fs/encfs/ChangeLog index c30c5acbbd88..d119d542f1ad 100644 --- a/sys-fs/encfs/ChangeLog +++ b/sys-fs/encfs/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-fs/encfs # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/encfs/ChangeLog,v 1.68 2015/04/03 15:24:27 blueness Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/encfs/ChangeLog,v 1.69 2015/04/03 15:29:58 blueness Exp $ + + 03 Apr 2015; Anthony G. Basile <blueness@gentoo.org> encfs-1.8.1.ebuild: + Economize a bit on the syntax. *encfs-1.8.1 (03 Apr 2015) diff --git a/sys-fs/encfs/encfs-1.8.1.ebuild b/sys-fs/encfs/encfs-1.8.1.ebuild index 1538dec2349e..7151f824ac89 100644 --- a/sys-fs/encfs/encfs-1.8.1.ebuild +++ b/sys-fs/encfs/encfs-1.8.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/encfs/encfs-1.8.1.ebuild,v 1.1 2015/04/03 15:24:27 blueness Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/encfs/encfs-1.8.1.ebuild,v 1.2 2015/04/03 15:29:58 blueness Exp $ EAPI="5" inherit autotools eutils multilib @@ -34,8 +34,7 @@ src_prepare() { src_configure() { # configure searches for either attr/xattr.h or sys/xattr.h - use xattr || export ac_cv_header_attr_xattr_h=no - use xattr || export ac_cv_header_sys_xattr_h=no + use xattr || export ac_cv_header_{attr,sys}_xattr_h=no econf \ $(use_enable nls) \ |