diff --git a/ChangeLog b/ChangeLog index 5b0b13f1f..9c283c137 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-07-21 Robert Millan + + Patch from David Weinehall + * util/mkbimage: Fix XSI-isms (for supporting POSIX-only shells). + 2004-07-20 Robert Millan * util/grub-install.in: Detect GNU/k*BSD systems as well. diff --git a/THANKS b/THANKS index 040398358..c008e0b0c 100644 --- a/THANKS +++ b/THANKS @@ -26,6 +26,7 @@ Chip Salzenberg Christian Jones Christoph Plattner Damian Ivereigh +David Weinehall Dan J. Walters Daniel Farrell Daniel Pittman diff --git a/util/mkbimage b/util/mkbimage index 52c229c04..48b119c0f 100644 --- a/util/mkbimage +++ b/util/mkbimage @@ -1,7 +1,7 @@ #!/bin/sh # MaKe a Bootable IMAGE --- 1.44, 2.88 and El Torito no-emulation mode # C) 2001,2002,2003 Thierry Laronde -# C) 2001,2002,2003 Robert Millan +# C) 2001,2002,2003 Robert Millan # This program is free software; you can redistribute it and/or modify @@ -232,10 +232,10 @@ done if [ ! "$image_type" ]; then image_type=hd; -elif [ "$image_type" != "1.20" -a "$image_type" != "1.44" \ - -a "$image_type" != "1.60" -a "$image_type" != "1.68" \ - -a "$image_type" != "2.88" -a "$image_type" != "1.74" \ - -a "$image_type" != "hd" -a "$image_type" != "1.60" ] ; then +elif [ "$image_type" != "1.20" ] && [ "$image_type" != "1.44" ] \ + && [ "$image_type" != "1.60" ] && [ "$image_type" != "1.68" ] \ + && [ "$image_type" != "2.88" ] && [ "$image_type" != "1.74" ] \ + && [ "$image_type" != "hd" ] && [ "$image_type" != "1.60" ] ; then error wrong_type ; fi