aboutsummaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorsimonb <simonb>2006-04-17 08:30:00 (GMT)
committersimonb <simonb>2006-04-17 08:30:00 (GMT)
commit9ec117da1ab522c7dbcfd03d71fcc5aaf8b16f1a (patch)
tree08b48209f2c22f16114d97f19c75cb97c5a87c52 /autogen.sh
parent78f3b0ada415296434dd0474b3f1dd305f35e383 (diff)
downloadfluxbox-9ec117da1ab522c7dbcfd03d71fcc5aaf8b16f1a.zip
fluxbox-9ec117da1ab522c7dbcfd03d71fcc5aaf8b16f1a.tar.bz2
shell portability fix
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index 1bf14e8..8e062ba 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -4,7 +4,8 @@
4dothis() { 4dothis() {
5 echo "Executing: $*" 5 echo "Executing: $*"
6 echo 6 echo
7 if ! $* ;then 7 $*
8 if [ $? -ne 0 ]; then
8 echo -e '\n ERROR: Carefully read the error message and' 9 echo -e '\n ERROR: Carefully read the error message and'
9 echo ' try to figure out what went wrong.' 10 echo ' try to figure out what went wrong.'
10 exit 1 11 exit 1