diff options
author | Daniel Joseph Barnhart Clark <dclark@pobox.com> | 2006-07-31 03:48:29 +0000 |
---|---|---|
committer | Daniel Joseph Barnhart Clark <dclark@pobox.com> | 2006-07-31 03:48:29 +0000 |
commit | 65d37ffebd597c991fbb8718615cd4c9a1946ab3 (patch) | |
tree | 49f19c1f9fda14146c7d1696152384d499bb4b8f /encap/m4-1.4.4.sh | |
parent | d04286b55daf7f4022ad78032d4f4b76ba713c8f (diff) | |
download | bcfg2-65d37ffebd597c991fbb8718615cd4c9a1946ab3.tar.gz bcfg2-65d37ffebd597c991fbb8718615cd4c9a1946ab3.tar.bz2 bcfg2-65d37ffebd597c991fbb8718615cd4c9a1946ab3.zip |
* Rename of .profile files to .ep, which is correct according to the
author of encap. Also associated Makefile and m4-1.4.4.sh changes.
* Added chmod 755 of .sh scripts before execution, in case the perms
go bad for some reason.
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@2013 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'encap/m4-1.4.4.sh')
-rwxr-xr-x | encap/m4-1.4.4.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/encap/m4-1.4.4.sh b/encap/m4-1.4.4.sh index 740c74cd8..b424007eb 100755 --- a/encap/m4-1.4.4.sh +++ b/encap/m4-1.4.4.sh @@ -5,7 +5,7 @@ ENCAP_PKGNAME=m4-1.4.4 PATH=$PATH:/usr/local/bin export PATH -cat > ${ENCAP_PKGNAME}.profile << EOF +cat > ${ENCAP_PKGNAME}.ep << EOF <?xml version="1.0"?> <encap_profile @@ -59,16 +59,16 @@ EOF chmod 755 m4-fake -( ${MKENCAP} -m ${PWD}/m4-fake -b -DUP ${ENCAP_PKGNAME}.profile || true ) \ +( ${MKENCAP} -m ${PWD}/m4-fake -b -DUP ${ENCAP_PKGNAME}.ep || true ) \ > ${ENCAP_PKGNAME}.log 2>&1 -( ${MKENCAP} -m ${PWD}/m4-fake -b -T ${ENCAP_PKGNAME}.profile || true ) \ +( ${MKENCAP} -m ${PWD}/m4-fake -b -T ${ENCAP_PKGNAME}.ep || true ) \ >> ${ENCAP_PKGNAME}.log 2>&1 -( ${MKENCAP} -m ${PWD}/m4-fake -b -CBI ${ENCAP_PKGNAME}.profile ) \ +( ${MKENCAP} -m ${PWD}/m4-fake -b -CBI ${ENCAP_PKGNAME}.ep ) \ >> ${ENCAP_PKGNAME}.log 2>&1 rm m4-fake -rm ${ENCAP_PKGNAME}.profile +rm ${ENCAP_PKGNAME}.ep exit 0 |