1 diff -ruN ipkg-utils-1.7-old/ipkg-build ipkg-utils-1.7-new/ipkg-build
2 --- ipkg-utils-1.7-old/ipkg-build 2004-08-24 04:56:12.000000000 +0200
3 +++ ipkg-utils-1.7-new/ipkg-build 2004-08-24 04:55:49.000000000 +0200
8 + cvs_dirs=`find . -name 'CVS'`
9 + if [ -n "$cvs_dirs" ]; then
10 + if [ "$noclean" = "1" ]; then
11 + echo "*** Warning: The following CVS directories where found.
12 +You probably want to remove them: " >&2
16 + echo "*** Removing the following files: $cvs_dirs"
21 tilde_files=`find . -name '*~'`
22 if [ -n "$tilde_files" ]; then
23 if [ "$noclean" = "1" ]; then
26 for script in $CONTROL/preinst $CONTROL/postinst $CONTROL/prerm $CONTROL/postrm; do
27 if [ -f $script -a ! -x $script ]; then
28 + if [ "$noclean" = "1" ]; then
29 echo "*** Error: package script $script is not executable" >&2