]> git.donarmstrong.com Git - debhelper.git/commitdiff
r39: Initial Import
authorjoey <joey>
Tue, 17 Aug 1999 04:39:26 +0000 (04:39 +0000)
committerjoey <joey>
Tue, 17 Aug 1999 04:39:26 +0000 (04:39 +0000)
debian/changelog
debian/rules
dh_clean.1
dh_installdebfiles

index f739f89b65dff5950e5b8639a186c3aa7c2302da..506a35e58758247d195b3174a8a0c024f9ec9183 100644 (file)
@@ -1,3 +1,15 @@
+debhelper (0.33) unstable; urgency=low
+
+  * examples/*: use prefix, instead of PREFIX, becuase autoconf uses that.
+    Also, use `pwd`/debian/tmp, instead of debian/tmp.
+  * Always substitute #DEBHELPER# in maintainer scripts, even if it expands
+    to nothing, for neatness and to save a few bytes. #15863
+  * dh_clean: added -k parameter to not delete debian/files. #15789
+  * examples/*: use dh_clean -k in the binary targets of all rules files,
+    for safety.
+
+ -- Joey Hess <joeyh@master.debian.org>  Thu, 11 Dec 1997 19:05:41 -0500
+
 debhelper (0.32) unstable; urgency=low
 
   * Split dh_installdebfiles into 3 programs (dh_installdeb, dh_shlibdeps,
index 8a240f9b5b1418a4ecda94838b5b997eca1d2920..b236fb1f0fd1affb5634fa4da6f3f0e73c00799f 100755 (executable)
@@ -27,7 +27,7 @@ binary-arch: build
 binary-indep: build
        ./dh_testdir $(test_files)
        ./dh_testroot
-       ./dh_clean
+       ./dh_clean -k
        ./dh_installdirs usr/bin usr/lib/debhelper
 
        find . -perm +111 -maxdepth 1 -type f \
@@ -44,7 +44,6 @@ binary-indep: build
        ./dh_fixperms
        ./dh_suidregister
        ./dh_installdeb
-       ./dh_shlibdeps
        ./dh_gencontrol
        ./dh_du
        ./dh_md5sums
index a9f0bdfd1d9b409a015c25900fcfbd9d9657f33b..5d9180a962372058359864f5c61664dc4795ef21 100644 (file)
@@ -3,7 +3,7 @@
 dh_clean \- clean up package build directories
 .SH SYNOPSIS
 .B dh_clean
-.I "[-v] [-a] [-i] [-ppackage] [-Ptmpdir] [file ...]"
+.I "[-v] [-a] [-i] [-k] [-ppackage] [-Ptmpdir] [file ...]"
 .SH "DESCRIPTION"
 dh_clean is a debhelper program that is responsible for cleaning up after a
 package is built. It removes the package build directories, and removes some
@@ -26,6 +26,15 @@ Clean up the package build directory for the package named "package".
 .B \-Ptmpdir
 Use "tmpdir" for package build directory.
 .TP
+.B \-k
+Do not delete debian/files. When do you want to use this? Anytime you have a
+debian/rules that has 2 binary targets that build different .deb packages;
+for example, one target is binary-arch, and the other is binary-indep, or
+one target builds the shared library, and the other the -dev package. If you
+didn't use -k in these cases, then debian/files would be deleted in the
+middle, and your changes file will only contain the last binary package that
+was built.
+.TP
 .B file ...
 Delete these files too.
 .SH NOTES
index 8b1e09620a70adb33eb3e6107ddd7c2790a22ae6..6afdf54886996011c28895ff43748dbefc961e86 100755 (executable)
@@ -1,11 +1,11 @@
 #!/bin/sh -e
 #
-# This program is depricated, but left in the package for backwards
+# This program is deprecated, but left in the package for backwards
 # compatability. It simply calls the 3 programs that replaced it.
 
 PATH=debian:$PATH:/usr/lib/debhelper
 
-echo "* Note: dh_installdebfiles is depricated." >&2
+echo "* Note: dh_installdebfiles is deprecated." >&2
 
 dh_installdeb $*
 dh_shlibdeps $*