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 diff is collapsed.
...@@ -1211,7 +1211,7 @@ then ...@@ -1211,7 +1211,7 @@ then
if test "x${with_qte}" = "x" if test "x${with_qte}" = "x"
then then
test_LDFLAGS="-L${QTDIR}/lib" test_LDFLAGS="-L${QTDIR}/lib"
test_CFLAGS="-I$(QTDIR)/include" test_CFLAGS="-I${QTDIR}/include"
else else
test_LDFLAGS="-L${with_qte}/lib" test_LDFLAGS="-L${with_qte}/lib"
test_CFLAGS="-I${with_qte}/include" test_CFLAGS="-I${with_qte}/include"
...@@ -1584,7 +1584,7 @@ AC_ARG_ENABLE(opie, ...@@ -1584,7 +1584,7 @@ AC_ARG_ENABLE(opie,
[ --with-qte=PATH Qt Embedded headers and libraries]) [ --with-qte=PATH Qt Embedded headers and libraries])
if test "x${with_qte}" = "x" if test "x${with_qte}" = "x"
then then
test_LDFLAGS="-L$(QTDIR)/lib" test_LDFLAGS="-L${QTDIR}/lib"
test_CFLAGS="-I${QTDIR}/include" test_CFLAGS="-I${QTDIR}/include"
else else
test_LDFLAGS="-L${with_qte}/lib" 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