Your message dated Sun, 13 Sep 2020 19:07:49 +0100
with message-id <[email protected]>
and subject line Fixed by 0.6.1-1 upload
has caused the Debian Bug report #928101,
regarding onak FTCBFS: abuses AC_CHECK_FILE
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
928101: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=928101
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: onak
Version: 0.5.0-1
Tags: patch upstream
User: [email protected]
Usertags: rebootstrap

onak fails to cross build from source, because the upstream configure.ac
abuses AC_CHECK_FILE. The macro is meant to check for files on the host,
but it uses it to examine the build tree. A simple test -f is better in
this case. Please consider applying the attached patch. It makes onak
cross buildable.

Helmut
--- onak-0.5.0.orig/configure.ac
+++ onak-0.5.0/configure.ac
@@ -62,7 +62,7 @@
 
 AC_MSG_CHECKING([which key database backend to use])
 AC_MSG_RESULT([$enable_backend])
-AC_CHECK_FILE([$srcdir/keydb_$enable_backend.c], ,AC_MSG_ERROR([non existent key database backend $enable_backend]))
+AS_IF([test -f "$srcdir/keydb_$enable_backend.c"], ,AC_MSG_ERROR([non existent key database backend $enable_backend]))
 
 if test "x$enable_backend" = "xdb4"
 then

--- End Message ---
--- Begin Message ---
Both of these are fixed by the upload of 0.6.1-1 done today (the changes
to drop dh-systemd and move to systemd where separate to these bugs
being filed so were not tagged in the changelog).

J.

-- 
Design a system any fool can use, and only a fool will want to use it.

--- End Message ---

Reply via email to