Module Name: src
Committed By: riastradh
Date: Sun Dec 19 10:20:38 UTC 2021
Modified Files:
src/sys/external/bsd/drm2: prepare-import.sh
Log Message:
Just a bare $NetBSD$, not its expansion for prepare-import.sh.
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/external/bsd/drm2/prepare-import.sh
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/external/bsd/drm2/prepare-import.sh
diff -u src/sys/external/bsd/drm2/prepare-import.sh:1.1 src/sys/external/bsd/drm2/prepare-import.sh:1.2
--- src/sys/external/bsd/drm2/prepare-import.sh:1.1 Mon Aug 27 00:46:21 2018
+++ src/sys/external/bsd/drm2/prepare-import.sh Sun Dec 19 10:20:38 2021
@@ -1,6 +1,6 @@
#!/bin/sh
-# $NetBSD: prepare-import.sh,v 1.1 2018/08/27 00:46:21 riastradh Exp $
+# $NetBSD: prepare-import.sh,v 1.2 2021/12/19 10:20:38 riastradh Exp $
#
# $ /path/to/prepare-import.sh
#
@@ -13,7 +13,7 @@ set -Ceu
find . -name '*.h' \
| while read f; do
cleantags "$f"
- (printf '/*\t$NetBSD: prepare-import.sh,v 1.1 2018/08/27 00:46:21 riastradh Exp $\t*/\n\n' && cat -- "$f") > "$f".tmp
+ (printf '/*\t%c%s%c\t*/\n\n' '$' NetBSD '$' && cat -- "$f") > "$f".tmp
mv -f -- "$f".tmp "$f"
done