projects
/
paraslash.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d54dd90
)
autogen.sh: Get rid of a bashism.
author
Andre Noll
<maan@systemlinux.org>
Tue, 29 Mar 2011 14:17:51 +0000
(16:17 +0200)
committer
Andre Noll
<maan@systemlinux.org>
Tue, 29 Mar 2011 14:17:51 +0000
(16:17 +0200)
This avoids some rather bizarre error messages if /bin/sh is dash.
autogen.sh
patch
|
blob
|
history
diff --git
a/autogen.sh
b/autogen.sh
index
76eaef2
..
a047f7c
100755
(executable)
--- a/
autogen.sh
+++ b/
autogen.sh
@@
-3,11
+3,11
@@
echo preparing...
if test -f Makefile; then
make maintainer-clean > /dev/null
fi
-aclocal -I .
&> /dev/null
+aclocal -I .
> /dev/null 2>&1
autoconf
autoheader
echo configuring...
./configure $@ > /dev/null
echo compiling...
-make clean2
&> /dev/null
+make clean2
> /dev/null 2>&1
make > /dev/null