diff options
author | Guillem Jover <guillem@debian.org> | 2009-11-14 05:18:58 +0000 |
---|---|---|
committer | Guillem Jover <guillem@debian.org> | 2009-11-14 05:18:58 +0000 |
commit | ee34d4fc3a4122bee28379dbcf9dd8e1b05f7a3b (patch) | |
tree | 97376797f8545db6b77cce6572a46d7e5a356d90 /debian | |
parent | 003c1dda93d513a6aee539ba3878c770b82bc82e (diff) |
Update make-new-tarball.sh to exclude git instead of CVS paths
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 6 | ||||
-rwxr-xr-x | debian/make-new-tarball.sh | 4 |
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 |