Fix gnulib/update-gnulib.sh
This commit fixes two paths in update-gnulib.sh that weren't updated when gnulib was moved to toplevel. gnulib/ChangeLog: * update-gnulib.sh: Adjust paths.
This commit is contained in:
parent
cf02c44dfd
commit
70175d8d62
@ -1,3 +1,7 @@
|
|||||||
|
2019-06-21 Gary Benson <gbenson@redhat.com>
|
||||||
|
|
||||||
|
* update-gnulib.sh: Adjust paths.
|
||||||
|
|
||||||
2019-06-14 Tom Tromey <tom@tromey.com>
|
2019-06-14 Tom Tromey <tom@tromey.com>
|
||||||
|
|
||||||
* update-gnulib.sh: Adjust paths.
|
* update-gnulib.sh: Adjust paths.
|
||||||
|
@ -100,9 +100,9 @@ if [ "$gnulib_head_sha1" != "$GNULIB_COMMIT_SHA1" ]; then
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Verify that we are in the gdb/ subdirectory.
|
# Verify that we are in the correct directory.
|
||||||
if [ ! -f ../main.c -o ! -d import ]; then
|
if [ ! -f ../gdb/main.c -o ! -d import ]; then
|
||||||
echo "Error: This script should be called from the gdb/gnulib subdirectory."
|
echo "Error: This script should be called from the gnulib subdirectory."
|
||||||
echo "Aborting."
|
echo "Aborting."
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
@ -191,5 +191,5 @@ $(find import/m4 -type f -name "*.m4" | LC_COLLATE=C sort | \
|
|||||||
sed 's/^/ /; s/$/ \\/; $s/ \\//g')
|
sed 's/^/ /; s/$/ \\/; $s/ \\//g')
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
../../move-if-change ${ACLOCAL_M4_DEPS_FILE}.tmp ${ACLOCAL_M4_DEPS_FILE}
|
../move-if-change ${ACLOCAL_M4_DEPS_FILE}.tmp ${ACLOCAL_M4_DEPS_FILE}
|
||||||
rm -f ${ACLOCAL_M4_DEPS_FILE}.tmp
|
rm -f ${ACLOCAL_M4_DEPS_FILE}.tmp
|
||||||
|
Loading…
Reference in New Issue
Block a user