all repos — fluxbox @ 9ec117da1ab522c7dbcfd03d71fcc5aaf8b16f1a

custom fork of the fluxbox windowmanager

shell portability fix
simonb simonb
commit

9ec117da1ab522c7dbcfd03d71fcc5aaf8b16f1a

parent

78f3b0ada415296434dd0474b3f1dd305f35e383

2 files changed, 5 insertions(+), 1 deletions(-)

jump to
M ChangeLogChangeLog

@@ -1,6 +1,9 @@

(Format: Year/Month/Day) Changes for 0.9.16: *06/04/17: + * Make autogen.sh properly /bin/sh portable (Simon) + Fixes #1445464 + autogen.sh * patchset missed my fbrun -Wall fixes (Simon) util/fbrun/FbRun.cc *06/04/16:
M autogen.shautogen.sh

@@ -4,7 +4,8 @@

dothis() { echo "Executing: $*" echo - if ! $* ;then + $* + if [ $? -ne 0 ]; then echo -e '\n ERROR: Carefully read the error message and' echo ' try to figure out what went wrong.' exit 1