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

@ -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"