diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2006-04-25 09:48:52 +0200 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2006-04-25 09:48:52 +0200 |
commit | eda1bb3c93661da4640026153d371c474f720d28 (patch) | |
tree | 6ade57daa520ba4a652be63a3f0cd1e86a11dd55 /debian/rules | |
parent | 0e36721c09a1c7a77e9cf45bbbc8476d9ef5c60a (diff) |
* apt-pkg/deb/dpkgpm.cc: wording fixes (thanks to mdz)
* debian/changelog: updated
* debian/rules: invoke tar with --no-recursion to avoid cruft in the tarbal
* po/apt-all.pot: updated
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/rules b/debian/rules index 5647ebd23..a8bf88762 100755 --- a/debian/rules +++ b/debian/rules @@ -336,6 +336,6 @@ cvs-mkul: arch-build: rm -rf debian/arch-build mkdir -p debian/arch-build/apt-$(APT_DEBVER) - tar -c --exclude=arch-build -f - `bzr inventory` | (cd debian/arch-build/$(PKG)-$(APT_DEBVER);tar xf -) + tar -c --exclude=arch-build --no-recursion -f - `bzr inventory` | (cd debian/arch-build/$(PKG)-$(APT_DEBVER);tar xf -) $(MAKE) -C debian/arch-build/apt-$(APT_DEBVER) startup doc (cd debian/arch-build/apt-$(APT_DEBVER); $(DEB_BUILD_PROG)) |