Commit 7cc03927 authored by Jean-Paul Saman's avatar Jean-Paul Saman

Found bug in configure.in script Qt Embedded definition used $(QTDIR) i.s.o ${QTDIR}

parent d4852cc1
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -1211,7 +1211,7 @@ then
if test "x${with_qte}" = "x"
then
test_LDFLAGS="-L${QTDIR}/lib"
test_CFLAGS="-I$(QTDIR)/include"
test_CFLAGS="-I${QTDIR}/include"
else
test_LDFLAGS="-L${with_qte}/lib"
test_CFLAGS="-I${with_qte}/include"
......@@ -1584,7 +1584,7 @@ AC_ARG_ENABLE(opie,
[ --with-qte=PATH Qt Embedded headers and libraries])
if test "x${with_qte}" = "x"
then
test_LDFLAGS="-L$(QTDIR)/lib"
test_LDFLAGS="-L${QTDIR}/lib"
test_CFLAGS="-I${QTDIR}/include"
else
test_LDFLAGS="-L${with_qte}/lib"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment