diff options
author | jbrjake <[email protected]> | 2007-07-16 03:22:42 +0000 |
---|---|---|
committer | jbrjake <[email protected]> | 2007-07-16 03:22:42 +0000 |
commit | ec47c624557962fe6cb38499644b40b681f324fb (patch) | |
tree | cfa79ff75703eab50be33e3755690c39daa20510 /contrib/Jamfile | |
parent | 815d3aa0089b5f7967c3a0524cdc56b30a997b4c (diff) |
Thanks to saintdev, we now have a pre-bootstrapped copy of the libdca source. This means jamming no longer necessitates futzing with autotool versions. Yay!
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@694 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 7be6aa72a..98d2797ea 100644 --- a/contrib/Jamfile +++ b/contrib/Jamfile @@ -117,7 +117,7 @@ actions LibDCA { cd `dirname $(>)` && CONTRIB=`pwd` && rm -rf libdca && tar xzf libdca.tar.gz && cd libdca && patch -p1 < ../patch-libdca.patch - ./bootstrap && ./configure && make && + ./configure && make && cp libdca/.libs/libdca.a $CONTRIB/lib && cp include/dca.h $CONTRIB/include && strip -S $CONTRIB/lib/libdca.a |