forked from I2P_Developers/i2p.i2p
minor script changes
- mbuild.sh: don't require bash - Slackware/i2p/doinst.sh: add bash shebang
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
#!/bin/sh
|
||||
#!/bin/bash
|
||||
|
||||
INST_DIR=directory
|
||||
|
||||
|
@ -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
|
||||
)
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user