base
This commit is contained in:
+19
@@ -0,0 +1,19 @@
|
||||
#!/bin/sh
|
||||
|
||||
rm -f debug.log
|
||||
rm -f child.log
|
||||
|
||||
# for shared builds.
|
||||
LD_LIBRARY_PATH=../src/.libs:$LD_LIBRARY_PATH
|
||||
export LD_LIBRARY_PATH
|
||||
|
||||
for f in $*; do
|
||||
if ./$f; then
|
||||
:
|
||||
else
|
||||
echo FAILURE
|
||||
exit 1
|
||||
fi
|
||||
done
|
||||
|
||||
exit 0
|
||||
Reference in New Issue
Block a user