Fix pcre-build.sh to work with non-compressed tarballs
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@12836 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
2bf6de71b8
commit
498e564e84
2 changed files with 6 additions and 2 deletions
|
|
@ -5,6 +5,9 @@ See the RELEASENOTES file for a summary of changes in each release.
|
|||
Version 2.0.5 (in progress)
|
||||
===========================
|
||||
|
||||
2011-11-11: wsfulton
|
||||
Fix pcre-build.sh to work with non-compressed tarballs - problem reported by Adrian Blakely.
|
||||
|
||||
2011-11-04: szager
|
||||
[python] Bug 3429388: python unsigned integer handling on 32-bit architectures.
|
||||
|
||||
|
|
|
|||
|
|
@ -36,8 +36,9 @@ fi
|
|||
|
||||
echo "Looking for PCRE tarball..."
|
||||
rm -rf pcre
|
||||
pcre_tarball=`ls pcre-*.tar.*`
|
||||
test -f "$pcre_tarball" || bail "Could not find tarball"
|
||||
pcre_tarball=`ls pcre-*.tar*`
|
||||
test -n "$pcre_tarball" || bail "Could not find tarball matching pattern: pcre-*.tar*"
|
||||
test -f "$pcre_tarball" || bail "Could not find a single PCRE tarball. Found: $pcre_tarball"
|
||||
|
||||
echo "Extracting tarball: $pcre_tarball"
|
||||
tar -xf $pcre_tarball || bail "Could not untar $pcre_tarball"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue