diff options
author | Fabian Groffen <grobian@gentoo.org> | 2010-03-21 08:13:13 +0000 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2010-03-21 08:13:13 +0000 |
commit | 131f2160265e8a91f5996433fa89ca4fd78a77aa (patch) | |
tree | 8d9e93ef46854ae4e52635c7459b53a8bef9cd9a /app-text/dos2unix | |
parent | fix is_virtual fact for Linux-VServer (diff) | |
download | gentoo-2-131f2160265e8a91f5996433fa89ca4fd78a77aa.tar.gz gentoo-2-131f2160265e8a91f5996433fa89ca4fd78a77aa.tar.bz2 gentoo-2-131f2160265e8a91f5996433fa89ca4fd78a77aa.zip |
Remove stray ? from use conditionals, bug #310455, too much copy 'n' paste :(
(Portage version: 2.2.00.15838-prefix/cvs/Darwin powerpc)
Diffstat (limited to 'app-text/dos2unix')
-rw-r--r-- | app-text/dos2unix/ChangeLog | 5 | ||||
-rw-r--r-- | app-text/dos2unix/dos2unix-5.0.ebuild | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/app-text/dos2unix/ChangeLog b/app-text/dos2unix/ChangeLog index d57d9a04a310..61d6fef7b3a9 100644 --- a/app-text/dos2unix/ChangeLog +++ b/app-text/dos2unix/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-text/dos2unix # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/dos2unix/ChangeLog,v 1.42 2010/03/20 19:34:55 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/dos2unix/ChangeLog,v 1.43 2010/03/21 08:13:13 grobian Exp $ + + 21 Mar 2010; Fabian Groffen <grobian@gentoo.org> dos2unix-5.0.ebuild: + Remove stray ? from use conditionals, bug #310455 20 Mar 2010; Fabian Groffen <grobian@gentoo.org> dos2unix-5.0.ebuild: Fix USE=nls for platforms that do not have libintl in libc, fix for Prefix diff --git a/app-text/dos2unix/dos2unix-5.0.ebuild b/app-text/dos2unix/dos2unix-5.0.ebuild index 9606bf6c4bac..7d117a0aa900 100644 --- a/app-text/dos2unix/dos2unix-5.0.ebuild +++ b/app-text/dos2unix/dos2unix-5.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/dos2unix/dos2unix-5.0.ebuild,v 1.2 2010/03/20 19:34:55 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/dos2unix/dos2unix-5.0.ebuild,v 1.3 2010/03/21 08:13:13 grobian Exp $ EAPI="3" @@ -35,7 +35,7 @@ src_prepare() { lintl() { # same logic as from virtual/libintl - use !elibc_glibc? && use !elibc_uclibc? && echo "-lintl" + use !elibc_glibc && use !elibc_uclibc && echo "-lintl" } src_compile() { |