add code to grab the version of xorriso
This commit is contained in:
parent
75053f33dc
commit
5cb7afe1f2
|
@ -37,7 +37,12 @@ fi
|
||||||
|
|
||||||
case "$MKISOFS" in
|
case "$MKISOFS" in
|
||||||
*xorriso*)
|
*xorriso*)
|
||||||
# OK
|
XORRISO_VER=$($MKISOFS --version 2>&1 | awk '
|
||||||
|
NR==1 {
|
||||||
|
split($3, ver, ".")
|
||||||
|
print ver[1]*10000+ver[2]*100+ver[3]
|
||||||
|
}')
|
||||||
|
# OK
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
echo "ERROR: debian-cd now depends on xorriso for making x86 bootable CDs."
|
echo "ERROR: debian-cd now depends on xorriso for making x86 bootable CDs."
|
||||||
|
|
Loading…
Reference in New Issue