Package: src:abi-compliance-checker Version: 1.99.9-1 Severity: wishlist Tags: patch User: reproducible-bui...@lists.alioth.debian.org Usertags: toolchain
Dear Maintainer, abi-compliance-checker calls Makefile.pl with --prefix set to the full temporary package building directory, causing it to be recorded in the finally installed /usr/bin/abi-compliance-checker. The package building directory should be passed through the --destdir option instead. Cheers, -- Stéphane -- System Information: Debian Release: jessie/sid APT prefers testing APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 3.12-1-amd64 (SMP w/8 CPU cores) Locale: LANG=fr_FR.utf8, LC_CTYPE=fr_FR.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash
diff -ur b/abi-compliance-checker-1.99.9/debian/rules a/abi-compliance-checker-1.99.9/debian/rules --- b/abi-compliance-checker-1.99.9/debian/rules 2013-10-13 15:19:47.000000000 +0200 +++ a/abi-compliance-checker-1.99.9/debian/rules 2014-02-17 17:53:18.838431508 +0100 @@ -6,7 +6,7 @@ override_dh_auto_install: mkdir -p $(CURDIR)$(DESTDIR)/debian/tmp/usr - perl Makefile.pl -install --prefix=$(CURDIR)$(DESTDIR)/debian/tmp/usr + perl Makefile.pl -install --prefix=/usr --destdir=$(CURDIR)$(DESTDIR)/debian/tmp override_dh_installchangelogs: dh_installchangelogs doc/Changes.html