1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-26 16:18:31 +00:00

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:
Mike Smith 1998-11-05 04:54:05 +00:00
parent ce6bd34722
commit 875e602afe
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=40924

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>