From 2af15d3acbe3be9ebd821ee878d6cbf2212eaf00 Mon Sep 17 00:00:00 2001 From: Daniel Eischen Date: Tue, 19 Dec 2000 16:45:51 +0000 Subject: [PATCH] Fix checking of LOCALBASE; the '$' was missing from '${LOCALBASE}'. Submitted by: Thomas Quinot --- lang/gnat/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lang/gnat/Makefile b/lang/gnat/Makefile index 770f707e4ae3..aea0f5d39155 100644 --- a/lang/gnat/Makefile +++ b/lang/gnat/Makefile @@ -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