[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#900865: marked as done (synthv1 FTCBFS: uses the build architecture qmake)



Your message dated Tue, 14 Jan 2020 21:16:11 +0100
with message-id <92dc0af3-73e9-6bc3-cc38-bfed3d6206f4@kabelmail.de>
and subject line Re: synthv1 FTCBFS: uses the build architecture qmake
has caused the Debian Bug report #900865,
regarding synthv1 FTCBFS: uses the build architecture qmake
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 owner@bugs.debian.org
immediately.)


-- 
900865: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=900865
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Source: synthv1
Version: 0.8.6-1
Tags: patch upstream
User: helmutg@debian.org
Usertags: rebootstrap

synthv1 fails to cross build from source, because configure.ac uses
AC_PATH_PROG for finding qmake. Thus it gets the build architecture
qmake. Since the behaviour of qmake is architecture-dependent, it should
be using AC_PATH_TOOL. The attached patch implements that and makes
synthv1 cross buildable. Please consider applying it.

Helmut
--- synthv1-0.8.6.orig/configure.ac
+++ synthv1-0.8.6/configure.ac
@@ -257,12 +257,12 @@
 ac_errmsg="not found in current PATH. Maybe QT development environment isn't available."
 
 if test "x$ac_qt4" = "xyes"; then
-   AC_PATH_PROG(ac_qmake, qmake-qt4, [no], $ac_path)
+   AC_PATH_TOOL(ac_qmake, qmake-qt4, [no], $ac_path)
 else
-   AC_PATH_PROG(ac_qmake, qmake-qt5, [no], $ac_path)
+   AC_PATH_TOOL(ac_qmake, qmake-qt5, [no], $ac_path)
 fi
 if test "x$ac_qmake" = "xno"; then
-   AC_PATH_PROG(ac_cv_qmake, qmake, [no], $ac_path)
+   AC_PATH_TOOL(ac_cv_qmake, qmake, [no], $ac_path)
    ac_qmake=$ac_cv_qmake
 fi
 if test "x$ac_qmake" = "xno"; then

--- End Message ---
--- Begin Message ---
Fixed by upstream, uploaded 0.9.12 to sid

--- End Message ---

Reply to: