mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-09 09:17:34 +00:00
make buildlib.sh more portable. This now uses find, instead of bash extensions found in many versions of /bin/sh for comparing file dates. Please report if this causes any issues.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3619 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
343a0c776c
commit
f13b33b0bf
@ -20,6 +20,11 @@ if [ -z "$MAKE" ] ; then
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
GZCAT=`which gzcat 2>/dev/null`
|
||||||
|
if [ -z "$GZCAT" ] ; then
|
||||||
|
GZCAT=zcat
|
||||||
|
fi
|
||||||
|
|
||||||
install=
|
install=
|
||||||
base=http://svn.freeswitch.org/downloads/libs
|
base=http://svn.freeswitch.org/downloads/libs
|
||||||
|
|
||||||
@ -52,15 +57,18 @@ else
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
if [ ! -d $uncompressed ] ; then
|
if [ ! -d $uncompressed ] ; then
|
||||||
tar -zxvf $tar
|
$GZCAT $tar | tar xf -
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
if [ -f $uncompressed/.complete ] ; then
|
||||||
if [ ! -f $root/.nothanks ] && [ $uncompressed/.complete -ot $uncompressed ] ; then
|
if [ ! -n "$(find $uncompressed/.complete -prune -newer $uncompressed)" ]; then
|
||||||
|
if [ ! -f $root/.nothanks ] ; then
|
||||||
echo remove stale .complete
|
echo remove stale .complete
|
||||||
rm $uncompressed/.complete
|
rm $uncompressed/.complete
|
||||||
sh -c "cd $uncompressed && $MAKE clean distclean"
|
sh -c "cd $uncompressed && $MAKE clean distclean"
|
||||||
fi
|
fi
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
if [ -f $uncompressed/.complete ] ; then
|
if [ -f $uncompressed/.complete ] ; then
|
||||||
echo $uncompressed already installed
|
echo $uncompressed already installed
|
||||||
@ -89,6 +97,7 @@ fi
|
|||||||
|
|
||||||
if [ $? = 0 ] ; then
|
if [ $? = 0 ] ; then
|
||||||
touch .complete
|
touch .complete
|
||||||
|
touch .complete
|
||||||
else
|
else
|
||||||
echo ERROR
|
echo ERROR
|
||||||
exit 1
|
exit 1
|
||||||
|
Loading…
x
Reference in New Issue
Block a user