From ac808124731af879036026fadb3590ed1d64d4f6 Mon Sep 17 00:00:00 2001 From: dirk Date: Thu, 25 May 2000 20:12:10 +0000 Subject: 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 a3c9925..95e53c5 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 -- cgit v1.1