зеркало из https://github.com/mozilla/pjs.git
better version of autoconf generator b=375219 r=preed
This commit is contained in:
Родитель
6e6fca0897
Коммит
26047db0f1
|
@ -1,5 +1,5 @@
|
|||
#!/bin/sh
|
||||
|
||||
for branch in HEAD MOZILLA_1_8_BRANCH MOZILLA_1_8_0_BRANCH; do
|
||||
$HOME/bin/sync-configure-better $branch
|
||||
$HOME/bin/sync-configure $branch
|
||||
done
|
||||
|
|
|
@ -3,6 +3,13 @@
|
|||
# 3/3/03 - Now Runs on bawb as cltbld
|
||||
# 5/1/03 - Now Runs on branch as cltbld
|
||||
# 2003/02/24 - Now runs on egg as cltbld
|
||||
# 2005/08/24 - Modified to take a branch argument (chase)
|
||||
# 2006-06-27 - Modified to use hostname -f (dbaron)
|
||||
|
||||
BRANCH="HEAD"
|
||||
if [ "x$1" != "x" ]; then
|
||||
BRANCH=$1
|
||||
fi
|
||||
|
||||
# Autoconf ***must*** be 2.13.
|
||||
AC="/usr/bin/autoconf-2.13"
|
||||
|
@ -11,7 +18,7 @@ CVSROOT='cltbld@cvs.mozilla.org:/cvsroot'
|
|||
CVS_RSH=ssh
|
||||
PATH="/usr/bin:/bin:/usr/local/bin:/usr/sbin:/usr/bsd:/sbin:/usr/bin:/bin:/usr/etc:/usr/ucb"
|
||||
TDIR="/tmp/c-s.$$"
|
||||
HOST=`/bin/hostname`
|
||||
HOST=`/bin/hostname -f`
|
||||
|
||||
export CVSROOT CVS_RSH PATH
|
||||
|
||||
|
@ -19,7 +26,11 @@ rm -rf ${TDIR}
|
|||
mkdir ${TDIR}
|
||||
cd ${TDIR}
|
||||
|
||||
${CVS} -q checkout mozilla/configure.in mozilla/configure mozilla/build/autoconf mozilla/aclocal.m4
|
||||
if [ "$BRANCH" = "HEAD" ]; then
|
||||
${CVS} -q checkout mozilla/configure.in mozilla/configure mozilla/build/autoconf mozilla/aclocal.m4
|
||||
else
|
||||
${CVS} -q checkout -r $BRANCH mozilla/configure.in mozilla/configure mozilla/build/autoconf mozilla/aclocal.m4
|
||||
fi
|
||||
|
||||
cd mozilla
|
||||
${AC} -l build/autoconf
|
||||
|
|
Загрузка…
Ссылка в новой задаче