[Midnightbsd-cvs] src: Makefile: Specify path for printf.

laffer1 at midnightbsd.org laffer1 at midnightbsd.org
Fri May 30 16:28:34 EDT 2008


Log Message:
-----------
Specify path for printf.  This is not the ideal solution.

Modified Files:
--------------
    src/etc/ssh:
        Makefile (r1.1 -> r1.2)

-------------- next part --------------
Index: Makefile
===================================================================
RCS file: /home/cvs/src/etc/ssh/Makefile,v
retrieving revision 1.1
retrieving revision 1.2
diff -L etc/ssh/Makefile -L etc/ssh/Makefile -u -r1.1 -r1.2
--- etc/ssh/Makefile
+++ etc/ssh/Makefile
@@ -16,15 +16,15 @@
 FILESNAME_short.${bl:T}=	${bl:T}
 
 short.${bl:T}: ${bl}
-	@printf "# After these initial comments, all the lines in this file must be\n" > ${.TARGET}
-	@printf "# exactly the same length, and must be in sorted order. Each line must\n" >> ${.TARGET}
-	@printf "# consist of the lower-case key fingerprint (ssh-keygen -l -f\n" >> ${.TARGET}
-	@printf "# /path/to/key), without colons, and with the first 12 characters\n" >> ${.TARGET}
-	@printf "# removed (that is, the lower 80 bits of the fingerprint). Unless these\n" >> ${.TARGET}
-	@printf "# rules are followed, the blacklist will not work properly. See\n" >> ${.TARGET}
-	@printf "# ssh-vulnkey(1).\n" >> ${.TARGET}
-	@printf "#\n" >> ${.TARGET}
-	@printf "# Copyright: (C) 2008 Canonical, Ltd., License: GPL-3.\n" >> ${.TARGET}
+	@/usr/bin/printf "# After these initial comments, all the lines in this file must be\n" > ${.TARGET}
+	@/usr/bin/printf "# exactly the same length, and must be in sorted order. Each line must\n" >> ${.TARGET}
+	@/usr/bin/printf "# consist of the lower-case key fingerprint (ssh-keygen -l -f\n" >> ${.TARGET}
+	@/usr/bin/printf "# /path/to/key), without colons, and with the first 12 characters\n" >> ${.TARGET}
+	@/usr/bin/printf "# removed (that is, the lower 80 bits of the fingerprint). Unless these\n" >> ${.TARGET}
+	@/usr/bin/printf "# rules are followed, the blacklist will not work properly. See\n" >> ${.TARGET}
+	@/usr/bin/printf "# ssh-vulnkey(1).\n" >> ${.TARGET}
+	@/usr/bin/printf "#\n" >> ${.TARGET}
+	@/usr/bin/printf "# Copyright: (C) 2008 Canonical, Ltd., License: GPL-3.\n" >> ${.TARGET}
 	sed -ne '/^#/!q;p;' ${.ALLSRC} >> ${.TARGET}
 
 	grep -v '^#' ${.ALLSRC} | cut -d ' ' -f 2 | cut -b13- | sort >> ${.TARGET}


More information about the Midnightbsd-cvs mailing list