diff options
author | simonb <simonb> | 2006-04-17 08:30:00 (GMT) |
---|---|---|
committer | simonb <simonb> | 2006-04-17 08:30:00 (GMT) |
commit | 9ec117da1ab522c7dbcfd03d71fcc5aaf8b16f1a (patch) | |
tree | 08b48209f2c22f16114d97f19c75cb97c5a87c52 | |
parent | 78f3b0ada415296434dd0474b3f1dd305f35e383 (diff) | |
download | fluxbox_pavel-9ec117da1ab522c7dbcfd03d71fcc5aaf8b16f1a.zip fluxbox_pavel-9ec117da1ab522c7dbcfd03d71fcc5aaf8b16f1a.tar.bz2 |
shell portability fix
-rw-r--r-- | ChangeLog | 3 | ||||
-rwxr-xr-x | autogen.sh | 3 |
2 files changed, 5 insertions, 1 deletions
@@ -1,6 +1,9 @@ | |||
1 | (Format: Year/Month/Day) | 1 | (Format: Year/Month/Day) |
2 | Changes for 0.9.16: | 2 | Changes for 0.9.16: |
3 | *06/04/17: | 3 | *06/04/17: |
4 | * Make autogen.sh properly /bin/sh portable (Simon) | ||
5 | Fixes #1445464 | ||
6 | autogen.sh | ||
4 | * patchset missed my fbrun -Wall fixes (Simon) | 7 | * patchset missed my fbrun -Wall fixes (Simon) |
5 | util/fbrun/FbRun.cc | 8 | util/fbrun/FbRun.cc |
6 | *06/04/16: | 9 | *06/04/16: |
@@ -4,7 +4,8 @@ | |||
4 | dothis() { | 4 | dothis() { |
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 |