merged building on systems without bash from manevich

This commit is contained in:
netblue30 2016-02-14 09:58:35 -05:00
parent c211601960
commit 32dbd9104d
6 changed files with 8 additions and 8 deletions

View file

@ -138,7 +138,7 @@ realinstall:
install -c -m 0644 .etc/mupen64plus.profile $(DESTDIR)/$(sysconfdir)/firejail/.
install -c -m 0644 .etc/disable-terminals.inc $(DESTDIR)/$(sysconfdir)/firejail/.
install -c -m 0644 .etc/lxterminal.profile $(DESTDIR)/$(sysconfdir)/firejail/.
bash -c "if [ ! -f $(DESTDIR)/$(sysconfdir)/firejail/login.users ]; then install -c -m 0644 etc/login.users $(DESTDIR)/$(sysconfdir)/firejail/.; fi;"
sh -c "if [ ! -f $(DESTDIR)/$(sysconfdir)/firejail/login.users ]; then install -c -m 0644 etc/login.users $(DESTDIR)/$(sysconfdir)/firejail/.; fi;"
rm -fr .etc
# man pages
rm -f firejail.1.gz

View file

@ -1,2 +1,2 @@
#!/bin/bash
#!/bin/sh
echo "installing..."

View file

@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh
echo "Calculationg SHA256 for all files in /transfer - firejail version $1"

View file

@ -1,12 +1,12 @@
#!/bin/bash
#!/bin/sh
# based on http://tldp.org/HOWTO/html_single/Debian-Binary-Package-Building-HOWTO/
# a code archive should already be available
TOP=`pwd`
CODE_ARCHIVE="$1-$2.tar.bz2"
CODE_DIR="$1-$2"
INSTALL_DIR+="$CODE_DIR/debian"
DEBIAN_CTRL_DIR+="$CODE_DIR/debian/DEBIAN"
INSTALL_DIR="${INSTALL_DIR}${CODE_DIR}/debian"
DEBIAN_CTRL_DIR="${DEBIAN_CTRL_DIR}${CODE_DIR}/debian/DEBIAN"
echo "*****************************************"
echo "code archive: $CODE_ARCHIVE"

View file

@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh
rm -fr .etc
mkdir .etc

View file

@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh
sed "s/VERSION/$1/g" $2 > $3
MONTH=`LC_ALL=C date -u --date="@${SOURCE_DATE_EPOCH:-$(date +%s)}" +%b`