Package: jigit Version: 1.15-2 Tags: patch Severity: important $ tar ztf jigit_1.15.orig.tar.gz | grep stamp jigit-1.15/build-stamp $
This causes this: $ debian/rules build make: Nothing to be done for `build'. $ and then this: $ fakeroot debian/rules binary ... dh_install mkimage jigdump jigit jigsum usr/bin dh_install: Compatibility levels before 4 are deprecated. cp: cannot stat `./mkimage': No such file or directory dh_install: command returned error code 256 make: *** [install] Error 1 $ The patch below fixes this without needing to update .orig.tar.gz. As an alternative, the upstream tarball could be fixed as it seems clear that the upstream is a Debian developer. Ian. diff -ru orig/jigit-1.15/debian/rules jigit-1.15/debian/rules --- orig/jigit-1.15/debian/rules 2007-10-02 16:51:56.000000000 +0100 +++ jigit-1.15/debian/rules 2007-10-02 16:50:25.000000000 +0100 @@ -5,19 +5,19 @@ # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 -build: build-stamp -build-stamp: +build: build-stamp-debian +build-stamp-debian: dh_testdir # Add here commands to compile the package. $(MAKE) - touch build-stamp + touch build-stamp-debian clean: dh_testdir dh_testroot - rm -f build-stamp + rm -f build-stamp build-stamp-debian # Add here commands to clean up after the build process. -$(MAKE) clean -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]