diff options
author | sr55 <[email protected]> | 2007-12-08 20:49:54 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2007-12-08 20:49:54 +0000 |
commit | 2111b9f456626a91191f16de0ac122c847b9280a (patch) | |
tree | 502ead5a3d4653baf4e33882b599879fcc33ce2b /contrib/Jamfile | |
parent | 63ee07ac2348ba5e4e47834656e1941df96814e1 (diff) |
Updated jamfile to fix a small compile issue with zlib
Updated makefiles to support cygwin building on platforms other than XP
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1109 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'contrib/Jamfile')
-rw-r--r-- | contrib/Jamfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/Jamfile b/contrib/Jamfile index 86d35a536..0c2fa30b2 100644 --- a/contrib/Jamfile +++ b/contrib/Jamfile @@ -415,7 +415,7 @@ if $(OS) = CYGWIN { cd `dirname $(>)` && CONTRIB=`pwd` && rm -rf zlib && (gzip -dc zlib.tar.gz | tar xf - ) && - cd zlib && ./configure --prefix=$CONTRIB --cache-file=$CONTRIB/config.cache && + cd zlib && ./configure --prefix=$CONTRIB && $(MAKE) && $(MAKE) install && touch $CONTRIB/.contrib && $(STRIP) $CONTRIB/lib/libz.a } |