Hi, On Thu, 08 Feb 2007 12:07:03 +0100, Armin Berres <[EMAIL PROTECTED]> said:
> I have exactly the same problem as Marc and it is quite annoying. > Below you can find exactly what it did. If you need more > information or I should test something just tell me :) The problem is being caused by ./debian being removed prematurely during clean. This is usually caused by ./scripts/package/Makefile and the line: clean-dirs += $(objtree)/debian/ What make-kpkg does is to move the Makefile out of the way early in the build (in the configure phase): ====================================================================== test ! -e scripts/package/builddeb || \ mv -f scripts/package/builddeb scripts/package/builddeb.kpkg-dist test ! -e scripts/package/Makefile || \ (mv -f scripts/package/Makefile scripts/package/Makefile.kpkg-dist && \ (echo "# Dummy file "; echo "help:") > scripts/package/Makefile) ====================================================================== And restores it late in the clean. Now, is there something that prevents this nuking of scripts/package/Makefile? What are the contents of that file after the build is done? (It should say # Dummy file , etc.). Does the patch restore the file, or something? manoj -- If it smells it's chemistry, if it crawls it's biology, if it doesn't work it's physics. Manoj Srivastava <[EMAIL PROTECTED]> <http://www.golden-gryphon.com/> 1024D/BF24424C print 4966 F272 D093 B493 410B 924B 21BA DABB BF24 424C -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]