Tobias Frost wrote:
> Now I cannot reproduce the compile problem...

Did you build again from the same tree?

There is a circular dependency of:

  * autoreconf generates configure from configure.ac
  * configure generates Makefile from Makefile.am
  * Makefile has a configure.ac rule to rebuild configure.ac from
    (patched) configure.proto

So if you build a second time, autoreconf takes the configure.ac
now derived from (patched) configure.proto

I've attached a patch for this particular madness.  That, in combination
with Andreas' patch set, seems to get this building reliably on
kfreebsd.  Thanks!

(There is still other madness, such as sub-makes seemingly hiding
stdout, only showing stderr and not the actual commands run).

Regards,
-- 
Steven Chamberlain
ste...@pyro.eu.org
--- debian/rules.orig	2016-04-11 20:28:53.529023000 +0100
+++ debian/rules	2016-04-11 21:34:32.951752497 +0100
@@ -36,6 +36,12 @@
 
 .PHONY: build
 build:
+	# These files in the original source are not used
+	rm -f configure configure.ac
+
+	sed "s/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/g" \
+	 < configure.proto > configure.ac
+
 	dh $@ --with autoreconf
 
 %:

Attachment: signature.asc
Description: Digital signature

Reply via email to