"Johnson, Chris A -ND" <[EMAIL PROTECTED]> writes:

> The offending line is 36:
> 
> driver_uc=`echo $$driver | tr [[:lower:]] [[:upper:]]`          \
> 
> I added a Space after the backtick (and before the two tabs), and now it
> builds fine. Odd... It worked okay in unattended 3.5.

The only thing I do not understand is why it ever worked.  Thank you
for the report; fixed.

 - Pat


--- Makefile.~1.21.~    2004-02-16 19:46:05.000000000 -0500
+++ Makefile    2004-03-05 08:53:45.000000000 -0500
@@ -33,7 +33,7 @@
 images/%.imz: .stamp-template empty-boot.img.gz drivers/%.dos
        @echo -n "Making [EMAIL PROTECTED]"
        @driver=`basename "$@" .imz` &&                                 \
-       driver_uc=`echo $$driver | tr [[:lower:]] [[:upper:]]`          \
+       driver_uc=`echo $$driver | tr [[:lower:]] [[:upper:]]` &&       \
        tmpfile=`mktemp /var/tmp/mtoolsrc.XXXXXX` &&                    \
        echo 'drive x:' > $$tmpfile &&                                  \
        echo file=\"`pwd`/"[EMAIL PROTECTED]"\" >> $$tmpfile &&                 \


-------------------------------------------------------
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
_______________________________________________
unattended-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unattended-devel

Reply via email to