diff options
author | msmith <msmith@FreeBSD.org> | 1998-11-05 04:54:05 +0000 |
---|---|---|
committer | msmith <msmith@FreeBSD.org> | 1998-11-05 04:54:05 +0000 |
commit | c9082bd8f6427d9d6f05907c3f95ad3c80aa103c (patch) | |
tree | 1ff6d481460c0e4ba43a9870fce087f3fa5f1c78 | |
parent | b008a0c8588ca47cd8f0c6d578d8e8f8075f096d (diff) | |
download | FreeBSD-src-c9082bd8f6427d9d6f05907c3f95ad3c80aa103c.zip FreeBSD-src-c9082bd8f6427d9d6f05907c3f95ad3c80aa103c.tar.gz |
Explicitly invoke perl to run the softwords.pl script in case the
script is not executable.
Submitted by: Don Lewis <Don.Lewis@tsc.tdk.com>
-rw-r--r-- | sys/boot/ficl/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/boot/ficl/Makefile b/sys/boot/ficl/Makefile index 1100063..62562e2 100644 --- a/sys/boot/ficl/Makefile +++ b/sys/boot/ficl/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.2 1998/11/04 00:29:33 msmith Exp $ +# $Id: Makefile,v 1.3 1998/11/04 03:42:16 msmith Exp $ # LIB= ficl NOPROFILE= yes @@ -17,7 +17,7 @@ SOFTWORDS= softcore.fr jhlocal.fr marker.fr CFLAGS+= -I${.CURDIR} softcore.c: ${SOFTWORDS} softcore.pl - (cd ${.CURDIR}/softwords; ./softcore.pl ${SOFTWORDS}) > ${.TARGET} + (cd ${.CURDIR}/softwords; perl softcore.pl ${SOFTWORDS}) > ${.TARGET} .include <bsd.lib.mk> |