diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2015-11-06 07:40:42 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2015-11-06 07:40:42 +0100 |
commit | c6739b6427261ac2682a9fca3b23c98df0dc9f60 (patch) | |
tree | a90193f98739ad96e6ae676409022bd15a648aae /makepackagebin.sh | |
parent | c6267b450e6858fdff4360104b362d9da2e1806d (diff) |
New upstream release
Diffstat (limited to 'makepackagebin.sh')
-rw-r--r-- | makepackagebin.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/makepackagebin.sh b/makepackagebin.sh index 1b8db28..2b846ba 100644 --- a/makepackagebin.sh +++ b/makepackagebin.sh @@ -1,6 +1,8 @@ #!/bin/sh echo "Script to invoke Jam and then package the binary release." +# Must use this rather than "jam -q" to ensure builtin libraries are used. + # Typical environment variables: # (NOTE some systems don't export these ENV vars. by default !!!) # @@ -51,7 +53,7 @@ rm -f bin/*.exe bin/*.dll rm -f ref/*.sp ref/*.cht ref/*.ti2 # Make sure it's built and installed -if ! jam -q -fJambase -j${NUMBER_OF_PROCESSORS:-2} -sBUILTIN_TIFF=true -sBUILTIN_JPEG=true install ; then +if ! jam -q -fJambase -j${NUMBER_OF_PROCESSORS:-2} -sBUILTIN_TIFF=true -sBUILTIN_JPEG=true -sBUILTIN_PNG=true -sBUILTIN_Z=true -sBUILTIN_SSL=true install ; then echo "Build failed!" exit 1 fi @@ -161,6 +163,7 @@ if [ X$USETAR = "Xtrue" ] ; then tar -czvf $PACKAGE $TOPDIR # tar -xzf to extract # tar -tzf to list + # Should we use "COPYFILE_DISABLE=1 tar .." on OS X ?? else zip -9 -r $PACKAGE $TOPDIR # unzip to extract |