diff --git a/Slackware/i2p/doinst.sh b/Slackware/i2p/doinst.sh index 96e227ec3..538403bf5 100644 --- a/Slackware/i2p/doinst.sh +++ b/Slackware/i2p/doinst.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash INST_DIR=directory diff --git a/core/c/mbuild.sh b/core/c/mbuild.sh index 16c92a7e9..b2d3f869e 100755 --- a/core/c/mbuild.sh +++ b/core/c/mbuild.sh @@ -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 )