Also update set_mkisofs_opts
This commit is contained in:
parent
7dcb4409ca
commit
0c3a2d19bb
|
@ -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 "
|
||||
|
||||
|
|
Loading…
Reference in New Issue