Fix checking of LOCALBASE; the '$' was missing from '${LOCALBASE}'.

Submitted by:	Thomas Quinot <quinot@inf.enst.fr>
This commit is contained in:
Daniel Eischen 2000-12-19 16:45:51 +00:00
parent 9343dfead6
commit 2af15d3acb
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=36131

View File

@ -59,8 +59,8 @@ have_boot!= if [ -x ${PREFIX}/bin/adagcc -a -x ${PREFIX}/bin/gnatbind ]; then \
have_boot=
.endif
.if empty(have_boot)
have_boot!= if [ -x {LOCALBASE}/bin/adagcc -a -x {LOCALBASE}/bin/gnatbind ]; then \
${ECHO} "{LOCALBASE}/bin"; \
have_boot!= if [ -x ${LOCALBASE}/bin/adagcc -a -x ${LOCALBASE}/bin/gnatbind ]; then \
${ECHO} "${LOCALBASE}/bin"; \
else \
${ECHO} ""; \
fi