aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-05-09 22:03:29 +0000
committerMike Frysinger <vapier@gentoo.org>2005-05-09 22:03:29 +0000
commitca0ee0e4c7e3bd6d6e200fb945ef3c44bcff3870 (patch)
tree8eb48b6c3c9e1166dba6c3f10dae39c767ad38a5 /bin
parentimport fix (diff)
downloadportage-cvs-ca0ee0e4c7e3bd6d6e200fb945ef3c44bcff3870.tar.gz
portage-cvs-ca0ee0e4c7e3bd6d6e200fb945ef3c44bcff3870.tar.bz2
portage-cvs-ca0ee0e4c7e3bd6d6e200fb945ef3c44bcff3870.zip
make sure the gnu config files end up +x
Diffstat (limited to 'bin')
-rwxr-xr-xbin/ebuild-functions.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/ebuild-functions.sh b/bin/ebuild-functions.sh
index 1cd1e61..87744fc 100755
--- a/bin/ebuild-functions.sh
+++ b/bin/ebuild-functions.sh
@@ -2,7 +2,7 @@
# ebuild-functions.sh; ebuild env functions, saved with the ebuild (not specific to the portage version).
# Copyright 2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-$Header: /local/data/ulm/cvs/history/var/cvsroot/gentoo-src/portage/bin/ebuild-functions.sh,v 1.9 2005/04/26 01:19:16 vapier Exp $
+$Header: /local/data/ulm/cvs/history/var/cvsroot/gentoo-src/portage/bin/ebuild-functions.sh,v 1.10 2005/05/09 22:03:29 vapier Exp $
use() {
if useq ${1}; then
@@ -78,6 +78,7 @@ econf() {
for x in $(find "${WORKDIR}" -type f -name config.guess -o -name config.sub) ; do
echo " * econf: updating ${x/${WORKDIR}\/} with /usr/share/gnuconfig/${x##*/}"
cp -f "/usr/share/gnuconfig/${x##*/}" "${x}"
+ chmod a+x "${x}"
done
fi