projects
/
m6w6
/
ext-psi
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
|
github
raw
|
patch
| inline |
side by side
(parent:
fc83f64
)
configure: higher precedence for $LEMON
author
Michael Wallner
<mike@php.net>
Tue, 29 Nov 2016 08:32:17 +0000
(09:32 +0100)
committer
Michael Wallner
<mike@php.net>
Tue, 29 Nov 2016 08:32:17 +0000
(09:32 +0100)
m4/psi/psi.m4
patch
|
blob
|
history
diff --git
a/m4/psi/psi.m4
b/m4/psi/psi.m4
index 4012ec1c782e5e24d45718a29a6d64a41afbd077..63ed1942ed7cced3ee09dd9d0f5945a7208d8ad3 100644
(file)
--- a/
m4/psi/psi.m4
+++ b/
m4/psi/psi.m4
@@
-294,7
+294,10
@@
dnl PSI_LEMON()
dnl Declare $LEMON precious, and check for a `lemon` in $PATH.
AC_DEFUN(PSI_LEMON, [
AC_ARG_VAR(LEMON, The lemon parser generator of the SQLite project)
- AC_PATH_PROG(LEMON, lemon, ./lemon)
+ if test -z "$LEMON"
+ then
+ AC_PATH_PROG(LEMON, lemon, ./lemon)
+ fi
PHP_SUBST(LEMON)
])