Bug 956597 - Update the SpiderMonkey source package generation script for bug 794506. r=gps

--HG--
extra : rebase_source : 327fdc90831d288e88924095a00a36bd1ce7edf2
This commit is contained in:
Jeff Walden 2014-01-05 17:17:36 -06:00
parent 55c3093167
commit f8e3941938

View File

@ -1,4 +1,10 @@
#!/bin/sh
# Find out ASAP if some command breaks here, because we're copying a lot of
# files we don't actually maintain ourselves, and requirements could easily be
# broken.
set -e
# need these environment vars:
echo "Environment:"
echo " MAKE = $MAKE"
@ -49,9 +55,9 @@ case $cmd in
fi
# put in the virtualenv and supporting files if it doesnt already exist
if [ ! -e ${SRCDIR}/build/virtualenv ]; then
if [ ! -e ${SRCDIR}/build/virtualenv_packages.txt ]; then
cp -t ${tgtpath}/js/src/build -dRp \
${SRCDIR}/../../build/virtualenv \
${SRCDIR}/../../build/virtualenv_packages.txt \
${SRCDIR}/../../build/buildconfig.py
fi
if [ ! -e ${SRCDIR}/python ]; then