Author: tille Date: 2012-05-24 08:42:50 +0000 (Thu, 24 May 2012) New Revision: 10979
Modified: trunk/packages/cain/trunk/debian/changelog trunk/packages/cain/trunk/debian/rules Log: Enable binary builds Modified: trunk/packages/cain/trunk/debian/changelog =================================================================== --- trunk/packages/cain/trunk/debian/changelog 2012-05-24 07:42:39 UTC (rev 10978) +++ trunk/packages/cain/trunk/debian/changelog 2012-05-24 08:42:50 UTC (rev 10979) @@ -1,3 +1,10 @@ +cain (1.9-4) unstable; urgency=low + + * debian/rules: Enable binary only builds + Closes: #674235 + + -- Andreas Tille <[email protected]> Thu, 24 May 2012 09:48:53 +0200 + cain (1.9-3) unstable; urgency=low [ Ivo Maintz ] Modified: trunk/packages/cain/trunk/debian/rules =================================================================== --- trunk/packages/cain/trunk/debian/rules 2012-05-24 07:42:39 UTC (rev 10978) +++ trunk/packages/cain/trunk/debian/rules 2012-05-24 08:42:50 UTC (rev 10979) @@ -15,7 +15,9 @@ override_dh_install: dh_install rm -f debian/$(pkg)/usr/share/cain/help/Licen* - find debian/$(pkg)/usr/share/cain/ -type f -executable -exec chmod 644 {} + + if [ -d debian/$(pkg)/usr/share/cain/ ] ; then \ + find debian/$(pkg)/usr/share/cain/ -type f -executable -exec chmod 644 {} + ; \ + fi override_dh_auto_test: echo "no tests implemented" _______________________________________________ debian-med-commit mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-commit
