From 8b2f7124cf380f59f7d98a05d2eb16ef0f90320f Mon Sep 17 00:00:00 2001 From: Dirk Froemberg Date: Thu, 25 May 2000 20:12:10 +0000 Subject: [PATCH] Remove -a from mkisofs' argument list. It's the default for version 1.12.1 and up and causes mkisofs to fail if present. Add $FreeBSD$ while I'm here. Ok'ed by: jkh --- share/examples/worm/makecdfs.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/share/examples/worm/makecdfs.sh b/share/examples/worm/makecdfs.sh index a3c992594ae..95e53c5f473 100755 --- a/share/examples/worm/makecdfs.sh +++ b/share/examples/worm/makecdfs.sh @@ -1,5 +1,7 @@ #!/bin/sh # +# $FreeBSD$ +# # usage: makecdfs "cd title" input-tree output-file "copyright string" # # For example: @@ -23,5 +25,5 @@ else tree=$1; shift outfile=$1; shift copyright="$*" - mkisofs $bootable -a -d -N -D -R -T -V "$title" -P "$copyright" -o $outfile $tree + mkisofs $bootable -d -N -D -R -T -V "$title" -P "$copyright" -o $outfile $tree fi