From 1f055ee5167b6fb8ffa31949a0465b65198cd88c Mon Sep 17 00:00:00 2001 From: Michael Prokop Date: Mon, 16 Jun 2014 14:00:01 +0200 Subject: [PATCH] MT#6253 Fix broken templates usage --- build_iso.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build_iso.sh b/build_iso.sh index c13cef2..15055ae 100755 --- a/build_iso.sh +++ b/build_iso.sh @@ -74,11 +74,11 @@ fi # make sure syslinux.cfg is same as isolinux.cfg so grml2usb works also echo "*** Copying isolinux.cfg to syslinux.cfg for grml2usb support ***" -cp ./templates/boot/isolinux/isolinux.cfg ./templates/boot/isolinux/syslinux.cfg +cp ${TEMPLATES}/boot/isolinux/isolinux.cfg ${TEMPLATES}/boot/isolinux/syslinux.cfg # build grub.cfg release options echo "*** Building templates [TEMPLATES=${TEMPLATES} MR=${MR} PUBLIC=${PUBLIC}] ***" -TEMPLATE="${TEMPLATES}" MR="${MR}" PUBLIC="${PUBLIC}" ./build_templates.sh +TEMPLATES="${TEMPLATES}" MR="${MR}" PUBLIC="${PUBLIC}" ./build_templates.sh echo "*** Generating Sipwise ISO ***" sudo /usr/sbin/grml2iso -c ./${TEMPLATES} -o "${SIPWISE_ISO}" "${GRML_ISO}"