summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog6
-rwxr-xr-xdebian/make-new-tarball.sh4
2 files changed, 8 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog
index 05c24221..d9246219 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,5 +1,6 @@
-hurd (20090404-3) unreleased; urgency=low
+hurd (20090404-3) UNRELEASED; urgency=low
+ [ Samuel Thibault ]
* debian/rules: Really put debugging symbols into the hurd-dbg package.
* debian/patches/libpthread_cancel_init.patch: New patch to fix portability
of pthread.h
@@ -10,6 +11,9 @@ hurd (20090404-3) unreleased; urgency=low
* debian/patches/hurd_console_startup.patch: Add -d current_vcs to enable
/dev/cons/vcs by default.
+ [ Guillem Jover ]
+ * Update make-new-tarball.sh to exclude git instead of CVS paths.
+
-- Samuel Thibault <sthibault@debian.org> Tue, 13 Oct 2009 01:20:44 +0200
hurd (20090404-2) unstable; urgency=low
diff --git a/debian/make-new-tarball.sh b/debian/make-new-tarball.sh
index f5c8028d..5af64b97 100755
--- a/debian/make-new-tarball.sh
+++ b/debian/make-new-tarball.sh
@@ -10,5 +10,7 @@ fi
BASENAME=$(basename $1)
DIRNAME=$(dirname $1)
-tar -czvf hurd.tgz --exclude=CVS --exclude=.cvsignore --exclude=debian -C $DIRNAME $BASENAME
+tar -czvf hurd.tgz \
+ --exclude=.git --exclude=.gitignore --exclude=debian \
+ -C $DIRNAME $BASENAME