Module Name:    src
Committed By:   christos
Date:           Sat Jan 28 22:25:44 UTC 2017

Modified Files:
        src/crypto/external/bsd/heimdal/lib/libkrb5: Makefile

Log Message:
Use ${TOOL_SED} and resolve paths properly.


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 \
    src/crypto/external/bsd/heimdal/lib/libkrb5/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/crypto/external/bsd/heimdal/lib/libkrb5/Makefile
diff -u src/crypto/external/bsd/heimdal/lib/libkrb5/Makefile:1.9 src/crypto/external/bsd/heimdal/lib/libkrb5/Makefile:1.10
--- src/crypto/external/bsd/heimdal/lib/libkrb5/Makefile:1.9	Sat Jan 28 16:31:52 2017
+++ src/crypto/external/bsd/heimdal/lib/libkrb5/Makefile	Sat Jan 28 17:25:44 2017
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.9 2017/01/28 21:31:52 christos Exp $
+# $NetBSD: Makefile,v 1.10 2017/01/28 22:25:44 christos Exp $
 
 USE_FORT?= yes	# network protocol library
 
@@ -540,10 +540,11 @@ INFOFLAGS=      -I. -I${HEIMDIST}/doc
 heimdal.texi: vars.texi
 
 vars.texi: vars.tin
-	< ${HEIMDIST}/doc/vars.tin > $@			\
-	sed -e 's,[@]dbdir[@],/var/heimdal,g'		\
-	    -e 's,[@]dbtype[@],db1,g'
-	    -e 's,[@]PACKAGE_VERSION[@],7.1.0,g'
+	@${TOOL_SED} -e 's,[@]dbdir[@],/var/heimdal,g'	\
+	    -e 's,[@]dbtype[@],db1,g'			\
+	    -e 's,[@]PACKAGE_VERSION[@],7.1.0,g'	\
+	    < ${.ALLSRC} > ${.TARGET}
+
 
 CLEANFILES+=	vars.texi
 

Reply via email to