diff options
author | Junio C Hamano <junkio@cox.net> | 2005-11-05 02:39:42 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-11-06 01:12:31 -0800 |
commit | d071e8dbb6849d40038db2d98a601395fe7b0b73 (patch) | |
tree | 176b30fe9702843b082f3177e53cb6cb809ff10d /debian/rules | |
parent | 12aa7456c937f758df9aafcc0123395ed7660fca (diff) | |
download | git-d071e8dbb6849d40038db2d98a601395fe7b0b73.tar.gz |
Package split: Debian.
As discussed on the list, split the foreign SCM interoperability
packages and documentation from the git-core binary package.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/debian/rules b/debian/rules index 568d430932..9f9514648f 100755 --- a/debian/rules +++ b/debian/rules @@ -41,7 +41,7 @@ MAN_DESTDIR := $(DESTDIR)/$(MANDIR) build: debian/build-stamp debian/build-stamp: dh_testdir - $(MAKE) prefix=$(PREFIX) PYTHON_PATH=/usr/bin/python2.4 all doc test + $(MAKE) prefix=$(PREFIX) PYTHON_PATH=/usr/bin/python2.4 all test doc touch debian/build-stamp debian-clean: @@ -65,7 +65,12 @@ install: build mkdir -p $(DOC_DESTDIR) find $(DOC) '(' -name '*.txt' -o -name '*.html' ')' -exec install {} $(DOC_DESTDIR) ';' + dh_movefiles -p git-arch + dh_movefiles -p git-cvs + dh_movefiles -p git-svn dh_movefiles -p git-tk + dh_movefiles -p git-email + dh_movefiles -p git-doc dh_movefiles -p git-core find debian/tmp -type d -o -print | sed -e 's/^/? /' |