Replace other occurences of git-FOO by git FOO

This commit is contained in:
Markus Armbruster 2008-12-03 07:57:14 -05:00
parent b4ecf7c7a6
commit 4c5d3c235b
2 changed files with 4 additions and 4 deletions

View file

@ -1,5 +1,5 @@
#!/bin/sh -e #!/bin/sh -e
# Run this script after a fresh git-clone to bring the source tree # Run this script after a fresh git clone to bring the source tree
# into a state where you can run configure. # into a state where you can run configure.
aclocal -I m4 aclocal -I m4
autoconf autoconf

View file

@ -112,7 +112,7 @@ then
do do
sleep "`expr 5 + ${RETR}`" sleep "`expr 5 + ${RETR}`"
RETR="`expr 1 + ${RETR}`" RETR="`expr 1 + ${RETR}`"
[ "${RETR}" -gt 5 ] && err "git-clone Timeout after ${RETR} retres." [ "${RETR}" -gt 5 ] && err "git clone Timeout after ${RETR} retres."
done done
cd empserver || err "Could not cd to ${BOXDIR}/${WORKDIR}/empserver." cd empserver || err "Could not cd to ${BOXDIR}/${WORKDIR}/empserver."
else else
@ -175,8 +175,8 @@ then
echo "" echo ""
fi fi
git-add include/emptime.h src/lib/gen/emptime.c git add include/emptime.h src/lib/gen/emptime.c
git-pull git pull
sh ./bootstrap sh ./bootstrap
./configure --prefix ${BOXDIR}/${WORKDIR}/emp4 ${CONFIGURE_OPTIONS} ./configure --prefix ${BOXDIR}/${WORKDIR}/emp4 ${CONFIGURE_OPTIONS}