Package: sqlitebrowser Version: 1.3-2 Severity: important Tags: patch sqlitebrowser fails to build on the alpha and mipsel build daemons (which run with sudo instead of fakeroot). This happens because the clean target changes the permissions of "Makefile" in such a setup. The appended patch fixes it.
Thiemo --- sqlitebrowser-1.3.old/debian/rules 2008-08-14 16:30:02.000000000 +0200 +++ sqlitebrowser-1.3/debian/rules 2008-08-14 16:27:13.000000000 +0200 @@ -18,7 +18,7 @@ endif # Backup original files backup: Makefile_orig Makefile_orig: - cp Makefile Makefile_orig + cp -p Makefile Makefile_orig configure: configure-stamp configure-stamp: backup -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

