summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordirk <dirk@FreeBSD.org>2000-05-25 20:12:10 +0000
committerdirk <dirk@FreeBSD.org>2000-05-25 20:12:10 +0000
commitac808124731af879036026fadb3590ed1d64d4f6 (patch)
treebf4b436a9564bed3d4565bb9faf5177f1d567ebb
parent1779ef3d1cfcd1ed7e9a20ea197bfd10ed497bdb (diff)
downloadFreeBSD-src-ac808124731af879036026fadb3590ed1d64d4f6.zip
FreeBSD-src-ac808124731af879036026fadb3590ed1d64d4f6.tar.gz
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
-rwxr-xr-xshare/examples/worm/makecdfs.sh4
1 files changed, 3 insertions, 1 deletions
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
OpenPOWER on IntegriCloud