1 diff -rc checkinstall-orig/checkinstall checkinstall/checkinstall
2 *** checkinstall-orig/checkinstall 2009-03-27 17:07:26.000000000 +0100
3 --- checkinstall/checkinstall 2009-04-14 16:34:08.000000000 +0200
6 chmod 755 $BUILD_DIR/DEBIAN/postrm
9 ! # Tag files in /etc to be conffiles
10 find $BUILD_DIR/etc 2> /dev/null | sed -e "s,$BUILD_DIR,," | \
11 ! grep -v '^/etc$' > $BUILD_DIR/DEBIAN/conffiles
13 # The package will be saved here (ignores <epoch>: prefix):
14 DEBPKG="${DIRECTORIO_FUENTE}/${NAME}_`echo ${VERSION} | sed -e 's/^[0123456789]*://'`-${RELEASE}_${ARCHITECTURE}.deb"
16 chmod 755 $BUILD_DIR/DEBIAN/postrm
19 ! # Tag non-directory files in /etc to be conffiles
20 find $BUILD_DIR/etc 2> /dev/null | sed -e "s,$BUILD_DIR,," | \
21 ! (while read fn; do test ! -d "$BUILD_DIR/$fn" && echo "$fn"; done) \
22 ! > $BUILD_DIR/DEBIAN/conffiles
24 # The package will be saved here (ignores <epoch>: prefix):
25 DEBPKG="${DIRECTORIO_FUENTE}/${NAME}_`echo ${VERSION} | sed -e 's/^[0123456789]*://'`-${RELEASE}_${ARCHITECTURE}.deb"