Module Name: src
Committed By: apb
Date: Sat Apr 4 10:08:08 UTC 2009
Modified Files:
src/distrib/sets: sets.subr
Log Message:
All non-error messages printed to stderr by makeplist must begin with
"DEBUG:", or else regpkg assumes that they are error messages. Make the
verbose messages printed by the list_set_files function follow that
convention. Fixes PR 41077 from Lloyd Parkes.
To generate a diff of this commit:
cvs rdiff -u -r1.81 -r1.82 src/distrib/sets/sets.subr
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/distrib/sets/sets.subr
diff -u src/distrib/sets/sets.subr:1.81 src/distrib/sets/sets.subr:1.82
--- src/distrib/sets/sets.subr:1.81 Sat Jan 24 22:14:44 2009
+++ src/distrib/sets/sets.subr Sat Apr 4 10:08:08 2009
@@ -1,4 +1,4 @@
-# $NetBSD: sets.subr,v 1.81 2009/01/24 22:14:44 rmind Exp $
+# $NetBSD: sets.subr,v 1.82 2009/04/04 10:08:08 apb Exp $
#
#
@@ -227,7 +227,7 @@
# In each file, a record consists of a path and a System Package name,
# separated by whitespace. E.g.,
#
-# # $NetBSD: sets.subr,v 1.81 2009/01/24 22:14:44 rmind Exp $
+# # $NetBSD: sets.subr,v 1.82 2009/04/04 10:08:08 apb Exp $
# . base-sys-root [keyword[,...]]
# ./altroot base-sys-root
# ./bin base-sys-root
@@ -313,7 +313,7 @@
for l in $list; do
echo $l
if $verbose; then
- echo $l >&2
+ echo >&2 "DEBUG: list_set_files: $l"
fi
done
done | xargs cat | ${SED} ${SUBST} | \