Shaleh wrote: >Can someone point me to the problem here?? >if test -f debian/official -a -f debian/README.Debian ; then \ > install -p -o root -g root -m 644 debian/README.Debian \ > debian/tmp-source/usr/src/kernel-source-2.0.34/README.Debian
The last line does not terminate with \, so the `if' construct is not terminated. All lines before the final `fi' need to end with \. -- Oliver Elphick [EMAIL PROTECTED] Isle of Wight http://www.lfix.co.uk/oliver PGP key from public servers; key ID 32B8FAA1 ======================================== "If it is possible, as much as it depends on you, live peaceably with all men." Romans 12:18 -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

