1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-21 11:16:16 +02:00

Another bootstrap kludge.

* bootstrap: Ensure gnulib-tests/test-*.sh are executable
This commit is contained in:
Jim Meyering
2007-11-14 23:52:42 +01:00
parent 9c59b53d8b
commit 47a46c844c
2 changed files with 6 additions and 1 deletions

View File

@@ -1,5 +1,8 @@
2007-11-14 Jim Meyering <meyering@redhat.com> 2007-11-14 Jim Meyering <meyering@redhat.com>
Another bootstrap kludge.
* bootstrap: Ensure gnulib-tests/test-*.sh are executable
#ifdef-out matchpathcon-related code, for now. #ifdef-out matchpathcon-related code, for now.
* src/install.c (setdefaultfilecon): #ifdef-out all of the * src/install.c (setdefaultfilecon): #ifdef-out all of the
matchpathcon-related code, until it's more efficient. matchpathcon-related code, until it's more efficient.

View File

@@ -598,10 +598,12 @@ if test $with_gettext = yes; then
fi fi
fi fi
# Horrible, coreutils-specific kludge. # Horrible, coreutils-specific kludges.
# Change paths in gnulib-tests/gnulib.mk from "../.." to "..". # Change paths in gnulib-tests/gnulib.mk from "../.." to "..".
m=gnulib-tests/gnulib.mk m=gnulib-tests/gnulib.mk
sed 's,\.\./\.\.,..,g' $m > $m-t sed 's,\.\./\.\.,..,g' $m > $m-t
mv -f $m-t $m mv -f $m-t $m
chmod a+x gnulib-tests/test-*.sh
echo "$0: done. Now you can run './configure'." echo "$0: done. Now you can run './configure'."