Subject: CVS commit: pkgsrc/mk/bulk
To: None <pkgsrc-changes@NetBSD.org>
From: Roland Illig <rillig@netbsd.org>
List: pkgsrc-changes
Date: 11/24/2005 12:14:32
Module Name:	pkgsrc
Committed By:	rillig
Date:		Thu Nov 24 12:14:32 UTC 2005

Modified Files:
	pkgsrc/mk/bulk: bsd.bulk-pkg.mk

Log Message:
1. Added section headers in the part of the user-settable variables.

2. Reindented two "if" statements that looked like this:

if long_long_command; then :; else
	else_commands
fi

By just scanning the beginnings of the lines, which is a common way of
reading source code, one may easily miss the "hidden" "then" branch at
the end of the line. I have changed it to:

if long_long_command; then :;
else
	else_commands
fi


To generate a diff of this commit:
cvs rdiff -r1.106 -r1.107 pkgsrc/mk/bulk/bsd.bulk-pkg.mk

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