diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-07-09 04:57:34 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-07-09 04:57:34 +0000 |
commit | 8eaa5d8feb2afc6c1f880dca4e6010626e1fa21b (patch) | |
tree | b922bd3c8a22d6ee6773342c4a72d49aa0f5adf9 /dev-util | |
parent | removed older ebuild (diff) | |
download | historical-8eaa5d8feb2afc6c1f880dca4e6010626e1fa21b.tar.gz historical-8eaa5d8feb2afc6c1f880dca4e6010626e1fa21b.tar.bz2 historical-8eaa5d8feb2afc6c1f880dca4e6010626e1fa21b.zip |
typo fix
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/aegis/aegis-4.4.ebuild | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/dev-util/aegis/aegis-4.4.ebuild b/dev-util/aegis/aegis-4.4.ebuild index ab8289744a0e..5c26944406cb 100644 --- a/dev-util/aegis/aegis-4.4.ebuild +++ b/dev-util/aegis/aegis-4.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/dev-util/aegis/aegis-4.4.ebuild,v 1.2 2002/07/09 04:48:52 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/aegis/aegis-4.4.ebuild,v 1.3 2002/07/09 04:57:34 seemant Exp $ S=${WORKDIR}/${P} DESCRIPTION="A transaction based revision control system" @@ -20,9 +20,12 @@ KEYWORDS="x86" src_compile() { # By default aegis configure puts shareable read/write files (locks etc) # in ${prefix}/com/aegis but the FHS says /var/lib/aegis can be shared. - econf + + myconf="${myconf} --with-nlsdir=/usr/share/locale" + + econf \ --sharedstatedir=/var/lib/aegis \ - --with-nlsdir=/usr/share/locale || die "./configure failed" + ${myconf} || die "./configure failed" # Second ebuild causes redefined/undefined function errors make clean |