From a950ae83933defc6cc6eaebc4060553ed72704b5 Mon Sep 17 00:00:00 2001 From: "David E. O'Brien" Date: Wed, 5 Sep 2001 20:04:35 +0000 Subject: [PATCH] Also try to build `setcdboot' first, and only `pkg_add -r' if you cannot. Submmitted by: dirk --- release/alpha/mkisoimages.sh | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/release/alpha/mkisoimages.sh b/release/alpha/mkisoimages.sh index dd5f046ea78..b455ec107f9 100644 --- a/release/alpha/mkisoimages.sh +++ b/release/alpha/mkisoimages.sh @@ -55,10 +55,14 @@ mkisofs -r -J -h -V $LABEL -o $NAME $* type setcdboot 2>&1 | grep " is " >/dev/null if [ $? -ne 0 ]; then echo The setcdboot port is not installed. Trying to get it now. - if ! pkg_add -r setcdboot; then - echo "Could not get it via pkg_add - please go install this" - echo "from the ports collection and run this script again." - exit 2 + if [ -f /usr/ports/sysutils/setcdboot/Makefile ]; then + cd /usr/ports/sysutils/setcdboot && make install && make clean + else + if ! pkg_add -r setcdboot; then + echo "Could not get it via pkg_add - please go install this" + echo "from the ports collection and run this script again." + exit 2 + fi fi fi if [ "x$bootable" != "x" ]; then