Also update set_mkisofs_opts

This commit is contained in:
Steve McIntyre 2018-02-10 00:35:30 +00:00
parent 7dcb4409ca
commit 0c3a2d19bb
1 changed files with 10 additions and 5 deletions

View File

@ -16,18 +16,23 @@ OPTS=
case "$ARCH" in
i386)
OPTS="-J"
OPTS="-J --joliet-long"
;;
amd64)
OPTS="-J"
OPTS="-J --joliet-long"
;;
alpha)
OPTS="-J"
OPTS="-J --joliet-long"
;;
arm*)
OPTS="-J --joliet-long"
;;
s390*)
OPTS="-J --joliet-long"
;;
*)
#No options by default
#No options by default - don't know about other arches
;;
esac
echo -n "$OPTS "