[Python-apps-commits] r10207 - in packages/catfish/trunk/debian (changelog rules)
asb at users.alioth.debian.org
asb at users.alioth.debian.org
Tue Dec 3 21:46:30 UTC 2013
Date: Tuesday, December 3, 2013 @ 21:46:29
Author: asb
Revision: 10207
Fix file permissions during install.
Modified:
packages/catfish/trunk/debian/changelog
packages/catfish/trunk/debian/rules
Modified: packages/catfish/trunk/debian/changelog
===================================================================
--- packages/catfish/trunk/debian/changelog 2013-12-01 19:39:14 UTC (rev 10206)
+++ packages/catfish/trunk/debian/changelog 2013-12-03 21:46:29 UTC (rev 10207)
@@ -56,6 +56,9 @@
- update debian/rules
- update debian/control
+ [ Andrew Starr-Bochicchio ]
+ * Fix file permissions during install.
+
-- Jackson Doak <noskcaj at ubuntu.com> Mon, 14 Oct 2013 17:47:55 +1100
catfish (0.3.2-2) unstable; urgency=low
Modified: packages/catfish/trunk/debian/rules
===================================================================
--- packages/catfish/trunk/debian/rules 2013-12-01 19:39:14 UTC (rev 10206)
+++ packages/catfish/trunk/debian/rules 2013-12-03 21:46:29 UTC (rev 10207)
@@ -3,11 +3,17 @@
# Uncomment this to turn on verbose mode.
export DH_VERBOSE=1
+DESTDIR := ${CURDIR}/debian/catfish
+
%:
dh $@ --with python2
override_dh_auto_configure:
./configure --prefix=/usr
+override_dh_auto_install:
+ dh_auto_install
+ find $(DESTDIR)/usr/share -type f -exec chmod a-x '{}' ';'
+
override_dh_installchanglogs:
- dh_installchangeslogs ChangeLog
\ No newline at end of file
+ dh_installchangeslogs ChangeLog
More information about the Python-apps-commits
mailing list