Commit 5973b28e authored by Sam Hocevar's avatar Sam Hocevar

* bootstrap: Workaround for an automake1.6 issue. Not a big deal, the code

    is actually nicer this way.
parent b7940e0e
#! /bin/sh
## bootstrap file for the VLC media player
## $Id: bootstrap,v 1.58 2003/07/02 11:21:26 sam Exp $
## $Id: bootstrap,v 1.59 2003/07/02 13:32:16 sam Exp $
##
## Authors: Sam Hocevar <sam@zoy.org>
......@@ -128,9 +128,12 @@ EOF
all: all-${mod}
all-${mod}:
if BUILD_MOZILLA
if \$(VLC_CONFIG) --target plugin | grep "${dir}/lib${mod}_plugin" >/dev/null 2>&1 ; then \$(MAKE) \$(AM_MAKEFLAGS) lib${mod}_plugin\$(LIBEXT); fi \\
if \$(VLC_CONFIG) --target builtin | grep "${dir}/lib${mod}\\.a" >/dev/null 2>&1 ; then \$(MAKE) \$(AM_MAKEFLAGS) lib${mod}.a; fi
else
if \$(VLC_CONFIG) --target plugin | grep "${dir}/lib${mod}_plugin" >/dev/null 2>&1 ; then \$(MAKE) \$(AM_MAKEFLAGS) lib${mod}_plugin\$(LIBEXT); fi \\
if \$(VLC_CONFIG) --target builtin | grep "${dir}/lib${mod}\\.a" >/dev/null 2>&1 ; then \$(MAKE) \$(AM_MAKEFLAGS) lib${mod}.a; fi \\
if BUILD_MOZILLA
if \$(VLC_CONFIG) --target builtin pic | grep "${dir}/lib${mod}_pic\\.a" >/dev/null 2>&1 ; then \$(MAKE) \$(AM_MAKEFLAGS) lib${mod}_pic.a; fi
endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment