From f5c6879efcbe8b7c77af07c50091bdbeeb61ece9 Mon Sep 17 00:00:00 2001 From: Ludovic Rousseau Date: Tue, 28 Jul 2009 21:33:24 +0000 Subject: [PATCH] debian/rules: copy config.{sub,guess} at the correct place (instead of in a non-existant build/ directory) --- debian/changelog | 4 +++- debian/rules | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/debian/changelog b/debian/changelog index 91e7c79..1d3f585 100644 --- a/debian/changelog +++ b/debian/changelog @@ -6,8 +6,10 @@ ccid (1.3.11-1) unstable; urgency=low (Closes: #537317) * debian/control: Standards-Version: 3.7.3 -> 3.8.2, add support of noopt, nostrip and parallel= in DEB_BUILD_OPTIONS + * debian/rules: copy config.{sub,guess} at the correct place (instead of in + a non-existant build/ directory) - -- Ludovic Rousseau Tue, 28 Jul 2009 23:22:37 +0200 + -- Ludovic Rousseau Tue, 28 Jul 2009 23:31:51 +0200 ccid (1.3.10-1) unstable; urgency=low diff --git a/debian/rules b/debian/rules index fc5afc0..9710dc1 100755 --- a/debian/rules +++ b/debian/rules @@ -68,9 +68,9 @@ clean: [ ! -f Makefile ] || $(MAKE) distclean -test -r /usr/share/misc/config.sub && \ - cp -f /usr/share/misc/config.sub build/config.sub + cp -f /usr/share/misc/config.sub config.sub -test -r /usr/share/misc/config.guess && \ - cp -f /usr/share/misc/config.guess build/config.guess + cp -f /usr/share/misc/config.guess config.guess dh_clean