diff options
author | eddyg <[email protected]> | 2009-01-11 22:23:31 +0000 |
---|---|---|
committer | eddyg <[email protected]> | 2009-01-11 22:23:31 +0000 |
commit | f2bd5d8c9da510bfc2969d0cf23a68196d61faa5 (patch) | |
tree | db923f417773768f66ccb3d915d53202025c4728 /contrib/Jamfile | |
parent | a2341c963575ff6643ebf0c55c58c029805623d5 (diff) |
Modified contrib Jamfile to use $(MAKE) not "make" for mp4v2 install, patch from KonaBlend.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2075 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 09f72955a..438a64874 100644 --- a/contrib/Jamfile +++ b/contrib/Jamfile @@ -273,7 +273,7 @@ actions LibMp4v2 cd `dirname $(>)` && CONTRIB=`pwd` && rm -rf libmp4v2 && (gzip -dc libmp4v2.tar.gz | tar xf - ) && cd libmp4v2 && $(LIBMP4V2_PATCH) rm -rf build && mkdir build && cd build && - ../configure --disable-shared --disable-debug --prefix=$CONTRIB && $(MAKE) && make install && + ../configure --disable-shared --disable-debug --prefix=$CONTRIB && $(MAKE) && $(MAKE) install && $(STRIP) $CONTRIB/lib/libmp4v2.a } Wget $(SUBDIR)/libmp4v2.tar.gz : $(SUBDIR)/version_libmp4v2.txt ; |