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>
This commit is contained in:
msmith 1998-11-05 04:54:05 +00:00
parent b008a0c858
commit c9082bd8f6

View File

@ -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>