close pr-3111 -- use sh to invoke script instead of executing
This commit is contained in:
parent
e6717c0bc9
commit
2a9ecb70c3
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile,v 1.3 1997/01/12 19:11:37 tls Exp $
|
||||
# $NetBSD: Makefile,v 1.4 1997/01/16 21:17:53 perry Exp $
|
||||
CFLAGS+= -DHAVE_CONFIG_H -I.
|
||||
|
||||
PROG= ksh
|
||||
|
@ -12,12 +12,12 @@ beforedepend: emacs.out siglist.out
|
|||
|
||||
# two steps to prevent the creation of a bogus siglist.out
|
||||
siglist.out: config.h sh.h siglist.in siglist.sh
|
||||
$(.CURDIR)/siglist.sh "$(CPP) $(CPPFLAGS) $(DEFS) -I. -I$(.CURDIR)" < $(.CURDIR)/siglist.in > tmpsiglist.out
|
||||
sh $(.CURDIR)/siglist.sh "$(CPP) $(CPPFLAGS) $(DEFS) -I. -I$(.CURDIR)" < $(.CURDIR)/siglist.in > tmpsiglist.out
|
||||
mv tmpsiglist.out siglist.out
|
||||
|
||||
# two steps to prevent the creation of a bogus emacs.out
|
||||
emacs.out: emacs.c
|
||||
$(.CURDIR)/emacs-gen.sh $(.CURDIR)/emacs.c > tmpemacs.out
|
||||
sh $(.CURDIR)/emacs-gen.sh $(.CURDIR)/emacs.c > tmpemacs.out
|
||||
mv tmpemacs.out emacs.out
|
||||
|
||||
emacs.o: emacs.out
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile,v 1.14 1995/04/22 12:10:17 cgd Exp $
|
||||
# $NetBSD: Makefile,v 1.15 1997/01/16 21:27:22 perry Exp $
|
||||
|
||||
# Change the line below for your time zone (after finding the zone you want in
|
||||
# the time zone files, or adding it to a time zone file).
|
||||
|
@ -38,7 +38,7 @@ TZDIR= ${DESTDIR}/usr/share/zoneinfo
|
|||
REDO= posix_only
|
||||
|
||||
# Since "." may not be in PATH...
|
||||
YEARISTYPE= ${.CURDIR}/datfiles/yearistype.sh
|
||||
YEARISTYPE= "sh ${.CURDIR}/datfiles/yearistype.sh"
|
||||
|
||||
YDATA= africa antarctica asia australasia \
|
||||
europe northamerica southamerica pacificnew etcetera factory \
|
||||
|
|
Loading…
Reference in New Issue