projects
/
platform
/
upstream
/
gstreamer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
5b028b1
)
autogen.sh now fails if aclocal fails.
author
Richard Boulton
<richard@tartarus.org>
Tue, 22 May 2001 13:48:48 +0000
(13:48 +0000)
committer
Richard Boulton
<richard@tartarus.org>
Tue, 22 May 2001 13:48:48 +0000
(13:48 +0000)
Original commit message from CVS:
autogen.sh now fails if aclocal fails.
autogen.sh
patch
|
blob
|
history
diff --git
a/autogen.sh
b/autogen.sh
index
5926f6e
..
b8170ef
100755
(executable)
--- a/
autogen.sh
+++ b/
autogen.sh
@@
-54,7
+54,10
@@
if test -z "$*"; then
fi
libtoolize --copy --force
-aclocal $ACLOCAL_FLAGS
+aclocal $ACLOCAL_FLAGS || {
+ echo "aclocal failed - check that all needed development files are present on system"
+ exit 1
+}
autoheader
autoconf
automake --add-missing