Use "set -e" to force exit on failure and convert $* to "$@". Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
6 lines
75 B
Bash
Executable File
6 lines
75 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
mkdir -p m4
|
|
autoreconf -i
|
|
./configure --enable-debug "$@"
|