+debhelper (0.17) unstable; urgency=low
+
+ * Added dh_installdirs, automatically creates subdirectories (for
+ compatability with debstd's debian/dirs file.
+ * dh_lib: fixed problem with -P flag.
+
+ -- Joey Hess <joeyh@master.debian.org> Fri, 7 Nov 1997 16:07:11 -0500
+
debhelper (0.16) unstable; urgency=low
* dh_compress: always compress changelog and upstream changelog, no
./dh_testdir $(test_files)
./dh_testroot
./dh_clean
+ ./dh_installdirs usr/bin usr/lib/debhelper
- install -d debian/tmp/usr/bin
find . -perm +111 -maxdepth 1 -type f \
-exec install -p {} debian/tmp/usr/bin \;
- install -d debian/tmp/usr/lib/debhelper
cp dh_lib debian/tmp/usr/lib/debhelper
cp -a autoscripts debian/tmp/usr/lib/debhelper
- ./dh_installdocs TODO README
+ ./dh_installdocs TODO README BUGS
./dh_installexamples examples/*
./dh_installmenu
./dh_installmanpages
# Check to see if -P was specified. If so, we can only act on a single
# package.
-if [ "$DH_TMPDIR" ] && echo "$DH_DOPACKAGES" | grep -q " "; then
+if [ "$DH_TMPDIR" ] && echo "$DH_DOPACKAGES" | egrep -q '.+ .+' ; then
error "-P was specified, but multiple packages would be acted on."
fi
dh_testdir -i
dh_testroot -i
dh_clean -i
+ dh_installdirs -i
# Add here commands to install the files into debian/tmp
#$(MAKE) PREFIX=debian/tmp install
dh_installdocs -i
dh_testdir -a
dh_testroot -a
dh_clean -a
+ dh_installdirs -a
# Add here commands to install the files into debian/tmp
#$(MAKE) PREFIX=debian/tmp install
dh_installdocs -a