summaryrefslogtreecommitdiffstats
path: root/contrib/Jamfile
diff options
context:
space:
mode:
authorsr55 <[email protected]>2008-08-17 23:06:33 +0000
committersr55 <[email protected]>2008-08-17 23:06:33 +0000
commit6f5fe2aa5351c13739ea7dc9b9e357d96304c6fc (patch)
tree7857d71e561c75fcecbcb7b9032ee89cb75eeb87 /contrib/Jamfile
parent93a68f8bac0eda52ae5febd5754dbfa5d5238578 (diff)
Contrib Jamfile Error
- My Bad, put a && in the wrong place. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1638 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'contrib/Jamfile')
-rw-r--r--contrib/Jamfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/Jamfile b/contrib/Jamfile
index b224b2001..4a871903a 100644
--- a/contrib/Jamfile
+++ b/contrib/Jamfile
@@ -220,13 +220,13 @@ rule LibFaac
Depends lib : $(<) ;
if $(OS) = CYGWIN
{
- CYGWIN_PATCH = "$(PATCH) -p1 < ../patch-faac-cygwin.patch" ;
+ CYGWIN_PATCH = "$(PATCH) -p1 < ../patch-faac-cygwin.patch &&" ;
}
}
actions LibFaac
{
cd `dirname $(>)` && CONTRIB=`pwd` &&
- rm -rf faac && (gzip -dc faac.tar.gz | tar xf - ) && cd faac && $(CYGWIN_PATCH) && ./bootstrap &&
+ rm -rf faac && (gzip -dc faac.tar.gz | tar xf - ) && cd faac && $(CYGWIN_PATCH) ./bootstrap &&
./configure --prefix=$CONTRIB --cache-file=$CONTRIB/config.cache --disable-shared --enable-static --without-mp4v2 &&
$(MAKE) && $(MAKE) install &&
$(STRIP) $CONTRIB/lib/libfaac.a