diff options
author | deischen <deischen@FreeBSD.org> | 2000-12-20 00:45:51 +0800 |
---|---|---|
committer | deischen <deischen@FreeBSD.org> | 2000-12-20 00:45:51 +0800 |
commit | 74ac07122c51cb22e778150f5a7e07cf50279ad2 (patch) | |
tree | 881d32d834a90058e0c1092779a1ad4a4553d606 /lang | |
parent | ea2eaf5d0b1d225aa516ade028f0bd2cd7748cbd (diff) | |
download | freebsd-ports-gnome-74ac07122c51cb22e778150f5a7e07cf50279ad2.tar.gz freebsd-ports-gnome-74ac07122c51cb22e778150f5a7e07cf50279ad2.tar.zst freebsd-ports-gnome-74ac07122c51cb22e778150f5a7e07cf50279ad2.zip |
Fix checking of LOCALBASE; the '$' was missing from '${LOCALBASE}'.
Submitted by: Thomas Quinot <quinot@inf.enst.fr>
Diffstat (limited to 'lang')
-rw-r--r-- | lang/gnat/Makefile | 4 |
1 files 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 |