Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
348be7c1
Commit
348be7c1
authored
Jul 04, 2003
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* bootstrap: Recursive rules now check for $(MAKE)'s return value so that
build errors are never ignored.
parent
5c6d4e9f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
6 deletions
+25
-6
bootstrap
bootstrap
+25
-6
No files found.
bootstrap
View file @
348be7c1
#! /bin/sh
## bootstrap file for the VLC media player
## $Id: bootstrap,v 1.6
2 2003/07/03 11:23:09
sam Exp $
## $Id: bootstrap,v 1.6
3 2003/07/04 13:53:06
sam Exp $
##
## Authors: Sam Hocevar <sam@zoy.org>
...
...
@@ -129,12 +129,31 @@ all: all-${mod}
all-
${
mod
}
:
if BUILD_MOZILLA
@if test "
\$
(plugin)" != "no" &&
\$
(VLC_CONFIG) --target plugin | grep "
${
dir
}
/lib
${
mod
}
_plugin" >/dev/null 2>&1 ; then
\$
(MAKE)
\$
(AM_MAKEFLAGS) lib
${
mod
}
_plugin
\$
(LIBEXT); fi;
\\
if test "
\$
(builtin)" != "no" &&
\$
(VLC_CONFIG) --target builtin | grep "
${
dir
}
/lib
${
mod
}
\\
.a" >/dev/null 2>&1 ; then
\$
(MAKE)
\$
(AM_MAKEFLAGS) lib
${
mod
}
.a; fi;
\\
if test "
\$
(pic)" != "no" &&
\$
(VLC_CONFIG) --target builtin pic | grep "
${
dir
}
/lib
${
mod
}
_pic
\\
.a" >/dev/null 2>&1 ; then
\$
(MAKE)
\$
(AM_MAKEFLAGS) lib
${
mod
}
_pic.a; fi
@set fnord
\$\$
MAKEFLAGS; amf=
\$\$
2;
\\
if test "
\$
(plugin)" != "no"
\\
&&
\$
(VLC_CONFIG) --target plugin | grep "
${
dir
}
/lib
${
mod
}
_plugin" >/dev/null 2>&1; then
\\
\$
(MAKE)
\$
(AM_MAKEFLAGS) lib
${
mod
}
_plugin
\$
(LIBEXT) || case "
\$\$
amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac;
\\
fi;
\\
if test "
\$
(builtin)" != "no"
\\
&&
\$
(VLC_CONFIG) --target builtin | grep "
${
dir
}
/lib
${
mod
}
\\
.a" >/dev/null 2>&1; then
\\
\$
(MAKE)
\$
(AM_MAKEFLAGS) lib
${
mod
}
.a || case "
\$\$
amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac;
\\
fi;
\\
if test "
\$
(pic)" != "no"
\\
&&
\$
(VLC_CONFIG) --target builtin pic | grep "
${
dir
}
/lib
${
mod
}
_pic
\\
.a" >/dev/null 2>&1; then
\\
\$
(MAKE)
\$
(AM_MAKEFLAGS) lib
${
mod
}
_pic.a || case "
\$\$
amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac;
\\
fi;
\\
test -z "
\$\$
fail"
else
@if test "
\$
(plugin)" != "no" &&
\$
(VLC_CONFIG) --target plugin | grep "
${
dir
}
/lib
${
mod
}
_plugin" >/dev/null 2>&1 ; then
\$
(MAKE)
\$
(AM_MAKEFLAGS) lib
${
mod
}
_plugin
\$
(LIBEXT); fi;
\\
if test "
\$
(builtin)" != "no" &&
\$
(VLC_CONFIG) --target builtin | grep "
${
dir
}
/lib
${
mod
}
\\
.a" >/dev/null 2>&1 ; then
\$
(MAKE)
\$
(AM_MAKEFLAGS) lib
${
mod
}
.a; fi
@set fnord
\$\$
MAKEFLAGS; amf=
\$\$
2;
\\
if test "
\$
(plugin)" != "no"
\\
&&
\$
(VLC_CONFIG) --target plugin | grep "
${
dir
}
/lib
${
mod
}
_plugin" >/dev/null 2>&1; then
\\
\$
(MAKE)
\$
(AM_MAKEFLAGS) lib
${
mod
}
_plugin
\$
(LIBEXT) || case "
\$\$
amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac;
\\
fi;
\\
if test "
\$
(builtin)" != "no"
\\
&&
\$
(VLC_CONFIG) --target builtin | grep "
${
dir
}
/lib
${
mod
}
\\
.a" >/dev/null 2>&1; then
\\
\$
(MAKE)
\$
(AM_MAKEFLAGS) lib
${
mod
}
.a || case "
\$\$
amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac;
\\
fi;
\\
test -z "
\$\$
fail"
endif
if UNTRUE
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment