Source: firetools
Version: 0.9.52-1
Tags: patch upstream
User: [email protected]
Usertags: rebootstrap
firetools fails to cross build from source, because ./configure detects
the wrong qmake. It should prefer a host-prefixed one. That's achieved
using AC_PATH_TOOL. The attached patch implements that and makes
firetools cross buildable. Please consider applying it.
Helmut
--- firetools-0.9.52.orig/configure.ac
+++ firetools-0.9.52/configure.ac
@@ -36,7 +36,7 @@
QMAKE="$qmake"
],
[
- QMAKE=`which qmake`
+ AC_PATH_TOOL([QMAKE],[qmake])
]
)
echo "trying $QMAKE"