summaryrefslogtreecommitdiffstats
path: root/usr.sbin
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>1994-10-03 23:51:34 +0000
committerphk <phk@FreeBSD.org>1994-10-03 23:51:34 +0000
commit8a19acef0be008d6d541b694f0de5a0b152d1a8e (patch)
tree3de6de8e79fee60e5a42957bb63e30a722644c34 /usr.sbin
parentfe775f9c7a1c56c0ed3b364fcc3c1943f0890df6 (diff)
downloadFreeBSD-src-8a19acef0be008d6d541b694f0de5a0b152d1a8e.zip
FreeBSD-src-8a19acef0be008d6d541b694f0de5a0b152d1a8e.tar.gz
Same as last one, use "sh -e" for these to make them catch pathological
conditions.
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/xntpd/ntpdate/Makefile4
-rw-r--r--usr.sbin/xntpd/ntpq/Makefile4
-rw-r--r--usr.sbin/xntpd/ntptrace/Makefile4
-rw-r--r--usr.sbin/xntpd/util/Makefile4
-rw-r--r--usr.sbin/xntpd/xntpd/Makefile4
-rw-r--r--usr.sbin/xntpd/xntpdc/Makefile4
6 files changed, 12 insertions, 12 deletions
diff --git a/usr.sbin/xntpd/ntpdate/Makefile b/usr.sbin/xntpd/ntpdate/Makefile
index 3a1b68b..f0af840 100644
--- a/usr.sbin/xntpd/ntpdate/Makefile
+++ b/usr.sbin/xntpd/ntpdate/Makefile
@@ -1,5 +1,5 @@
#
-# $Id: Makefile,v 1.2 1993/12/21 21:06:30 wollman Exp $
+# $Id: Makefile,v 1.3 1993/12/22 11:32:56 rgrimes Exp $
#
CFLAGS+= -I${.CURDIR}/../include
@@ -23,6 +23,6 @@ SRCS= ntpdate.c version.c
beforedepend: version.c
version.c: ${.CURDIR}/../VERSION
- ${.CURDIR}/../scripts/mkversion ntpdate
+ sh -e ${.CURDIR}/../scripts/mkversion ntpdate
.include <bsd.prog.mk>
diff --git a/usr.sbin/xntpd/ntpq/Makefile b/usr.sbin/xntpd/ntpq/Makefile
index 4fc41c4..875592a 100644
--- a/usr.sbin/xntpd/ntpq/Makefile
+++ b/usr.sbin/xntpd/ntpq/Makefile
@@ -1,5 +1,5 @@
#
-# $Id: Makefile,v 1.2 1993/12/21 21:06:32 wollman Exp $
+# $Id: Makefile,v 1.3 1993/12/22 11:33:07 rgrimes Exp $
#
CFLAGS+= -I${.CURDIR}/../include
@@ -24,6 +24,6 @@ SRCS= ntpq.c ntpq_ops.c version.c
beforedepend: version.c
version.c: ${.CURDIR}/../VERSION
- ${.CURDIR}/../scripts/mkversion ntpq
+ sh -e ${.CURDIR}/../scripts/mkversion ntpq
.include <bsd.prog.mk>
diff --git a/usr.sbin/xntpd/ntptrace/Makefile b/usr.sbin/xntpd/ntptrace/Makefile
index 57f3051..5d5f327 100644
--- a/usr.sbin/xntpd/ntptrace/Makefile
+++ b/usr.sbin/xntpd/ntptrace/Makefile
@@ -1,5 +1,5 @@
#
-# $Id: Makefile,v 1.1 1993/12/21 19:50:40 wollman Exp $
+# $Id: Makefile,v 1.2 1993/12/22 11:33:14 rgrimes Exp $
#
CFLAGS+= -I${.CURDIR}/../include
@@ -23,6 +23,6 @@ SRCS= ntptrace.c version.c
beforedepend: version.c
version.c: ${.CURDIR}/../VERSION
- ${.CURDIR}/../scripts/mkversion ntptrace
+ sh -e ${.CURDIR}/../scripts/mkversion ntptrace
.include <bsd.prog.mk>
diff --git a/usr.sbin/xntpd/util/Makefile b/usr.sbin/xntpd/util/Makefile
index ce9e1fd..02cb294 100644
--- a/usr.sbin/xntpd/util/Makefile
+++ b/usr.sbin/xntpd/util/Makefile
@@ -1,5 +1,5 @@
#
-# $Id: Makefile,v 1.1 1993/12/21 20:16:18 wollman Exp $
+# $Id: Makefile,v 1.2 1993/12/22 11:33:28 rgrimes Exp $
#
CFLAGS+= -I${.CURDIR}/../include
@@ -23,6 +23,6 @@ SRCS= tickadj.c version.c
beforedepend: version.c
version.c: ${.CURDIR}/../VERSION
- ${.CURDIR}/../scripts/mkversion tickadj
+ sh -e ${.CURDIR}/../scripts/mkversion tickadj
.include <bsd.prog.mk>
diff --git a/usr.sbin/xntpd/xntpd/Makefile b/usr.sbin/xntpd/xntpd/Makefile
index 4ed30b4..6ab7cd0 100644
--- a/usr.sbin/xntpd/xntpd/Makefile
+++ b/usr.sbin/xntpd/xntpd/Makefile
@@ -1,5 +1,5 @@
#
-# $Id: Makefile,v 1.5 1994/04/03 20:37:26 wollman Exp $
+# $Id: Makefile,v 1.6 1994/09/30 00:34:17 wollman Exp $
#
CFLAGS+= -I${.CURDIR}/../include
@@ -42,6 +42,6 @@ SRCS+= refclock_acts.c refclock_as2201.c refclock_atom.c refclock_chu.c \
beforedepend: version.c
version.c: ${.CURDIR}/../VERSION
- ${.CURDIR}/../scripts/mkversion xntpd
+ sh -e ${.CURDIR}/../scripts/mkversion xntpd
.include <bsd.prog.mk>
diff --git a/usr.sbin/xntpd/xntpdc/Makefile b/usr.sbin/xntpd/xntpdc/Makefile
index 4f40d70..a06cf1a 100644
--- a/usr.sbin/xntpd/xntpdc/Makefile
+++ b/usr.sbin/xntpd/xntpdc/Makefile
@@ -1,5 +1,5 @@
#
-# $Id: Makefile,v 1.1 1993/12/21 20:36:45 wollman Exp $
+# $Id: Makefile,v 1.2 1993/12/22 11:34:00 rgrimes Exp $
#
CFLAGS+= -I${.CURDIR}/../include
@@ -23,6 +23,6 @@ SRCS= ntpdc.c ntpdc_ops.c version.c
beforedepend: version.c
version.c: ${.CURDIR}/../VERSION
- ${.CURDIR}/../scripts/mkversion xntpdc
+ sh -e ${.CURDIR}/../scripts/mkversion xntpdc
.include <bsd.prog.mk>
OpenPOWER on IntegriCloud