diff -Nru /tmp/HG6cSnDeeW/launchpad-integration-0.1.4.2/debian/changelog /tmp/RBJLeTRTEd/launchpad-integration-0.1.4.3/debian/changelog --- /tmp/HG6cSnDeeW/launchpad-integration-0.1.4.2/debian/changelog 2006-10-20 11:20:51.000000000 +0100 +++ /tmp/RBJLeTRTEd/launchpad-integration-0.1.4.3/debian/changelog 2006-10-25 12:05:57.000000000 +0100 @@ -1,3 +1,11 @@ +launchpad-integration (0.1.4.3) edgy; urgency=low + + * debian/patches/02_fix_squashfs.patch: + - Try removing /rofs from executable path as well as + /filesystem.squashfs. + + -- Colin Watson Wed, 25 Oct 2006 12:05:51 +0100 + launchpad-integration (0.1.4.2) edgy; urgency=low * debian/patch/02_fix_squashfs.patch: diff -Nru /tmp/HG6cSnDeeW/launchpad-integration-0.1.4.2/debian/patches/02_fix_squashfs.diff /tmp/RBJLeTRTEd/launchpad-integration-0.1.4.3/debian/patches/02_fix_squashfs.diff --- /tmp/HG6cSnDeeW/launchpad-integration-0.1.4.2/debian/patches/02_fix_squashfs.diff 2006-10-20 11:21:04.000000000 +0100 +++ /tmp/RBJLeTRTEd/launchpad-integration-0.1.4.3/debian/patches/02_fix_squashfs.diff 1970-01-01 01:00:00.000000000 +0100 @@ -1,16 +0,0 @@ -=== modified file 'launchpadintegration/packageinfo.py' ---- launchpadintegration/packageinfo.py 2006-05-22 14:10:03 +0000 -+++ launchpadintegration/packageinfo.py 2006-10-20 10:19:16 +0000 -@@ -154,8 +154,9 @@ - if logger: - logger.info('Executable for process %d is "%s"', pid, filename) - # dirty fix for the Live CD -- if filename.startswith('/rofs'): -- filename = filename[5:] -+ prefix='/filesystem.squashfs' -+ if filename.startswith(prefix): -+ filename = filename[len(prefix):] - return cls.fromFilename(filename, logger) - - @classmethod - diff -Nru /tmp/HG6cSnDeeW/launchpad-integration-0.1.4.2/debian/patches/02_fix_squashfs.patch /tmp/RBJLeTRTEd/launchpad-integration-0.1.4.3/debian/patches/02_fix_squashfs.patch --- /tmp/HG6cSnDeeW/launchpad-integration-0.1.4.2/debian/patches/02_fix_squashfs.patch 1970-01-01 01:00:00.000000000 +0100 +++ /tmp/RBJLeTRTEd/launchpad-integration-0.1.4.3/debian/patches/02_fix_squashfs.patch 2006-10-25 12:04:17.000000000 +0100 @@ -0,0 +1,16 @@ +diff -Nur launchpad-integration-0.1.4.2/launchpadintegration/packageinfo.py launchpad-integration-0.1.4.2.new/launchpadintegration/packageinfo.py +--- launchpad-integration-0.1.4.2/launchpadintegration/packageinfo.py 2006-08-02 16:19:01.000000000 +0100 ++++ launchpad-integration-0.1.4.2.new/launchpadintegration/packageinfo.py 2006-10-25 12:04:15.000000000 +0100 +@@ -154,8 +154,10 @@ + if logger: + logger.info('Executable for process %d is "%s"', pid, filename) + # dirty fix for the Live CD +- if filename.startswith('/rofs'): +- filename = filename[5:] ++ if filename.startswith('/rofs'): ++ filename = filename[len('/rofs'):] ++ elif filename.startswith('/filesystem.squashfs'): ++ filename = filename[len('/filesystem.squashfs'):] + return cls.fromFilename(filename, logger) + + @classmethod