minor script changes

- mbuild.sh: don't require bash
- Slackware/i2p/doinst.sh: add bash shebang
This commit is contained in:
kytv
2013-09-20 22:17:48 +00:00
parent 641fc0cae9
commit df555731c4
2 changed files with 4 additions and 18 deletions

View File

@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
INST_DIR=directory

View File

@ -1,21 +1,7 @@
#!/usr/bin/env bash
#!/bin/sh -e
# Automatic build of so files, ignores failed builds.
# Place latest gmp tarball in the jbigi dir, and exec this script.
if [ -z "$BASH_VERSION" ]; then
echo "This script needs to be run with Bash."
echo
echo "Please install bash and then run this script with"
echo "bash $0"
exit 1
fi
#JBIGI=../../../installer/lib/jbigi/jbigi.jar
#if [ -f jbigi.jarx ] ; then
#JBIGI=../jbigi.jar
#fi
rm -f t/* jcpuid/lib/freenet/support/CPUInformation/* jbigi/lib/net/i2p/util/*
( cd jcpuid ; ./build.sh )
@ -32,7 +18,7 @@ mkdir t
cp jbigi/lib/net/i2p/util/* t/
(
cd t
for i in *.so ; { strip $i ; }
for i in *.so ; do strip $i ; done
)
cp jcpuid/lib/freenet/support/CPUInformation/* t/
@ -47,7 +33,7 @@ mkdir t
cp jbigi/lib/net/i2p/util/* t/
(
cd t
for i in *.so ; { strip $i ; }
for i in *.so ; do strip $i ; done
)