Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.bin Change direct calls to "make" to ${MAKE}... sigh..



details:   https://anonhg.NetBSD.org/src/rev/1e153dd5d61b
branches:  trunk
changeset: 498464:1e153dd5d61b
user:      garbled <garbled%NetBSD.org@localhost>
date:      Thu Oct 26 05:57:00 2000 +0000

description:
Change direct calls to "make" to ${MAKE}... sigh..

diffstat:

 usr.bin/compile_et/Makefile |  4 ++--
 usr.bin/kdestroy/Makefile   |  4 ++--
 usr.bin/kf/Makefile         |  4 ++--
 usr.bin/kinit/Makefile      |  4 ++--
 usr.bin/klist/Makefile      |  4 ++--
 usr.bin/mk_cmds/Makefile    |  4 ++--
 usr.bin/string2key/Makefile |  4 ++--
 7 files changed, 14 insertions(+), 14 deletions(-)

diffs (126 lines):

diff -r da463343d220 -r 1e153dd5d61b usr.bin/compile_et/Makefile
--- a/usr.bin/compile_et/Makefile       Thu Oct 26 05:52:54 2000 +0000
+++ b/usr.bin/compile_et/Makefile       Thu Oct 26 05:57:00 2000 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.4 2000/08/03 22:47:41 assar Exp $
+# $NetBSD: Makefile,v 1.5 2000/10/26 05:57:00 garbled Exp $
 DIST=          ${.CURDIR}/../../crypto/dist
 .PATH: ${DIST}/heimdal/lib/com_err
 
@@ -17,7 +17,7 @@
        -I${DESTDIR}/usr/include/krb5           \
        -DHAVE_CONFIG_H
 
-VERS!= cd ${.CURDIR}/../../lib/libvers && make print-objdir
+VERS!= cd ${.CURDIR}/../../lib/libvers && ${MAKE} print-objdir
 
 LDADD= -L${VERS} -lvers \
        -lroken \
diff -r da463343d220 -r 1e153dd5d61b usr.bin/kdestroy/Makefile
--- a/usr.bin/kdestroy/Makefile Thu Oct 26 05:52:54 2000 +0000
+++ b/usr.bin/kdestroy/Makefile Thu Oct 26 05:57:00 2000 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.4 2000/08/03 22:47:42 assar Exp $
+# $NetBSD: Makefile,v 1.5 2000/10/26 05:57:00 garbled Exp $
 DIST=          ${.CURDIR}/../../crypto/dist
 .PATH: ${DIST}/heimdal/kuser
 
@@ -18,7 +18,7 @@
        -I${DESTDIR}/usr/include/openssl        \
        -DHAVE_CONFIG_H
 
-VERS!= cd ${.CURDIR}/../../lib/libvers && make print-objdir
+VERS!= cd ${.CURDIR}/../../lib/libvers && ${MAKE} print-objdir
 
 LDADD=                                         \
        -lkafs                                  \
diff -r da463343d220 -r 1e153dd5d61b usr.bin/kf/Makefile
--- a/usr.bin/kf/Makefile       Thu Oct 26 05:52:54 2000 +0000
+++ b/usr.bin/kf/Makefile       Thu Oct 26 05:57:00 2000 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.5 2000/08/03 22:47:41 assar Exp $
+# $NetBSD: Makefile,v 1.6 2000/10/26 05:57:01 garbled Exp $
 DIST=          ${.CURDIR}/../../crypto/dist
 .PATH: ${DIST}/heimdal/appl/kf
 
@@ -15,7 +15,7 @@
        -I${DESTDIR}/usr/include/krb5           \
        -DHAVE_CONFIG_H
 
-VERS!= cd ${.CURDIR}/../../lib/libvers && make print-objdir
+VERS!= cd ${.CURDIR}/../../lib/libvers && ${MAKE} print-objdir
 
 LDADD= -lkrb5 \
        -lcrypto \
diff -r da463343d220 -r 1e153dd5d61b usr.bin/kinit/Makefile
--- a/usr.bin/kinit/Makefile    Thu Oct 26 05:52:54 2000 +0000
+++ b/usr.bin/kinit/Makefile    Thu Oct 26 05:57:00 2000 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.4 2000/08/03 22:47:41 assar Exp $
+# $NetBSD: Makefile,v 1.5 2000/10/26 05:57:01 garbled Exp $
 DIST=          ${.CURDIR}/../../crypto/dist
 .PATH: ${DIST}/heimdal/kuser
 
@@ -18,7 +18,7 @@
         -I${DESTDIR}/usr/include/openssl       \
         -DHAVE_CONFIG_H
 
-VERS!= cd ${.CURDIR}/../../lib/libvers && make print-objdir
+VERS!= cd ${.CURDIR}/../../lib/libvers && ${MAKE} print-objdir
 
 LDADD=                                         \
        -lkafs                                  \
diff -r da463343d220 -r 1e153dd5d61b usr.bin/klist/Makefile
--- a/usr.bin/klist/Makefile    Thu Oct 26 05:52:54 2000 +0000
+++ b/usr.bin/klist/Makefile    Thu Oct 26 05:57:00 2000 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.4 2000/08/03 22:47:42 assar Exp $
+# $NetBSD: Makefile,v 1.5 2000/10/26 05:57:01 garbled Exp $
 DIST=          ${.CURDIR}/../../crypto/dist
 .PATH: ${DIST}/heimdal/kuser
 
@@ -18,7 +18,7 @@
        -I${DESTDIR}/usr/include/openssl        \
        -DHAVE_CONFIG_H
 
-VERS!= cd ${.CURDIR}/../../lib/libvers && make print-objdir
+VERS!= cd ${.CURDIR}/../../lib/libvers && ${MAKE} print-objdir
 
 LDADD=                                         \
        -lkafs                                  \
diff -r da463343d220 -r 1e153dd5d61b usr.bin/mk_cmds/Makefile
--- a/usr.bin/mk_cmds/Makefile  Thu Oct 26 05:52:54 2000 +0000
+++ b/usr.bin/mk_cmds/Makefile  Thu Oct 26 05:57:00 2000 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.4 2000/08/03 22:47:44 assar Exp $
+# $NetBSD: Makefile,v 1.5 2000/10/26 05:57:01 garbled Exp $
 DIST=          ${.CURDIR}/../../crypto/dist
 .PATH: ${DIST}/heimdal/lib/sl
 
@@ -17,7 +17,7 @@
        -I${DESTDIR}/usr/include/krb5           \
        -DHAVE_CONFIG_H
 
-VERS!= cd ${.CURDIR}/../../lib/libvers && make print-objdir
+VERS!= cd ${.CURDIR}/../../lib/libvers && ${MAKE} print-objdir
 
 LDADD= -L${VERS} -lvers \
        -lroken \
diff -r da463343d220 -r 1e153dd5d61b usr.bin/string2key/Makefile
--- a/usr.bin/string2key/Makefile       Thu Oct 26 05:52:54 2000 +0000
+++ b/usr.bin/string2key/Makefile       Thu Oct 26 05:57:00 2000 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.4 2000/08/03 22:47:44 assar Exp $
+# $NetBSD: Makefile,v 1.5 2000/10/26 05:57:01 garbled Exp $
 DIST=          ${.CURDIR}/../../crypto/dist
 .PATH: ${DIST}/heimdal/kdc
 
@@ -19,7 +19,7 @@
        -I${DESTDIR}/usr/include/openssl        \
        -DHAVE_CONFIG_H
 
-VERS!= cd ${.CURDIR}/../../lib/libvers && make print-objdir
+VERS!= cd ${.CURDIR}/../../lib/libvers && ${MAKE} print-objdir
 
 LDADD= -lkrb5 \
        -lcrypto \



Home | Main Index | Thread Index | Old Index