[Python-modules-commits] r30078 - in packages/mod-wsgi/trunk/debian (changelog rules)
bzed at users.alioth.debian.org
bzed at users.alioth.debian.org
Sat Aug 9 09:35:38 UTC 2014
Date: Saturday, August 9, 2014 @ 09:35:37
Author: bzed
Revision: 30078
Use find instead of a simple cp to copy the source into build
directories.
Modified:
packages/mod-wsgi/trunk/debian/changelog
packages/mod-wsgi/trunk/debian/rules
Modified: packages/mod-wsgi/trunk/debian/changelog
===================================================================
--- packages/mod-wsgi/trunk/debian/changelog 2014-08-09 09:11:42 UTC (rev 30077)
+++ packages/mod-wsgi/trunk/debian/changelog 2014-08-09 09:35:37 UTC (rev 30078)
@@ -1,6 +1,8 @@
mod-wsgi (4.2.7-1) unstable; urgency=medium
* New upstream release.
+ * Use find instead of a simple cp to copy the source into build
+ directories.
-- Bernd Zeimetz <bzed at debian.org> Sat, 09 Aug 2014 11:11:36 +0200
Modified: packages/mod-wsgi/trunk/debian/rules
===================================================================
--- packages/mod-wsgi/trunk/debian/rules 2014-08-09 09:11:42 UTC (rev 30077)
+++ packages/mod-wsgi/trunk/debian/rules 2014-08-09 09:35:37 UTC (rev 30078)
@@ -26,7 +26,7 @@
build-%/config.status:
dh_testdir
mkdir -p build-$*
- cp *.in *.c configure build-$*/
+ find . -mindepth 1 -maxdepth 1 -name 'debian' -o -name 'build-*' -o -exec cp {} build-$* \;
cd build-$* && ./configure --with-apxs=$(APXS2) \
--with-python=/usr/bin/python$*
More information about the Python-modules-commits
mailing list