File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -6,24 +6,24 @@ echo aclocal...
6
6
exit 1
7
7
}
8
8
9
- aclocal -I ./scripts -I . ${ACLOCAL_FLAGS}
9
+ aclocal -I ./scripts -I . ${ACLOCAL_FLAGS} || exit 1
10
10
11
11
echo autoheader...
12
12
(autoheader --version) < /dev/null > /dev/null 2>&1 || {
13
13
echo autoheader not found
14
14
exit 1
15
15
}
16
16
17
- autoheader
17
+ autoheader || exit 1
18
18
19
19
echo -n " libtoolize... "
20
20
if ( (glibtoolize --version) < /dev/null > /dev/null 2>&1 ); then
21
21
echo " using glibtoolize"
22
- glibtoolize --automake --copy --force
22
+ glibtoolize --automake --copy --force || exit 1
23
23
24
24
elif ( (libtoolize --version) < /dev/null > /dev/null 2>&1 ) ; then
25
25
echo " using libtoolize"
26
- libtoolize --automake --copy --force
26
+ libtoolize --automake --copy --force || exit 1
27
27
28
28
else
29
29
echo " libtoolize nor glibtoolize not found"
@@ -36,15 +36,15 @@ echo automake...
36
36
exit 1
37
37
}
38
38
39
- automake --add-missing --copy --gnu
39
+ automake --add-missing --copy --gnu || exit 1
40
40
41
41
echo autoconf...
42
42
(autoconf --version) < /dev/null > /dev/null 2>&1 || {
43
43
echo autoconf not found
44
44
exit 1
45
45
}
46
46
47
- autoconf
47
+ autoconf || exit 1
48
48
49
49
echo ready to configure
50
50
You can’t perform that action at this time.
0 commit comments