On April 20, 2008 at 6:43PM +0900, tats (at debian.org) wrote: > Ah, yaskkserv 0.3.8-5 has not yet fixed the FTBFS bug. > > The buildd log seems that applying the patch with dpatch to the > configure file has no effect, because the configure file is invoked > at the clean target.
Probably, invoking the configure file at the clean target is
redundantly. How about the following patch?
----
--- yaskkserv-0.3.8-5/debian/rules
+++ yaskkserv-0.3.8/debian/rules
@@ -44,13 +44,13 @@
clean: clean1 unpatch
rm -rf var/
-clean1: Makefile.config
+clean1:
dh_testdir
dh_testroot
rm -f build-stamp
# Add here commands to clean up after the build process.
- $(MAKE) clean #cleandepend
+ [ ! -f Makefile.config ] || $(MAKE) clean
rm -rf Makefile.config
dh_clean
----
Thanks,
--
Tatsuya Kinoshita
pgp0rDBXvybnp.pgp
Description: PGP signature

