Author: tille Date: 2015-11-24 18:33:52 +0000 (Tue, 24 Nov 2015) New Revision: 20531
Modified: trunk/packages/loki/trunk/debian/changelog trunk/packages/loki/trunk/debian/rules Log: apply install target only for architecture dependent target Modified: trunk/packages/loki/trunk/debian/changelog =================================================================== --- trunk/packages/loki/trunk/debian/changelog 2015-11-24 18:19:20 UTC (rev 20530) +++ trunk/packages/loki/trunk/debian/changelog 2015-11-24 18:33:52 UTC (rev 20531) @@ -1,6 +1,8 @@ loki (2.4.7.4-6) UNRELEASED; urgency=medium * cme fix dpkg-control + * apply install target only for architecture dependent target + Closes: #806070 -- Andreas Tille <[email protected]> Tue, 24 Nov 2015 19:18:45 +0100 Modified: trunk/packages/loki/trunk/debian/rules =================================================================== --- trunk/packages/loki/trunk/debian/rules 2015-11-24 18:19:20 UTC (rev 20530) +++ trunk/packages/loki/trunk/debian/rules 2015-11-24 18:33:52 UTC (rev 20531) @@ -18,8 +18,18 @@ %: dh $@ -override_dh_auto_install: +override_dh_auto_install-arch: + dh_auto_install -a + make install prefix=$(CURDIR)/debian/loki/usr bindir=$(CURDIR)/debian/loki/usr/bin LDFLAGS="$(LDFLAGS)" + +override_dh_installman-arch: + dh_installman -a for man in $(MANPAGES) ; do \ ln -s loki.1.gz debian/$(pkg)/usr/share/man/man1/$${man}.gz ; \ done - make install prefix=$(CURDIR)/debian/loki/usr bindir=$(CURDIR)/debian/loki/usr/bin LDFLAGS="$(LDFLAGS)" + +override_dh_auto_build-indep: + # nothing to do here + +override_dh_auto_install-indep: + # nothing to do here _______________________________________________ debian-med-commit mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-commit
