diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-06-27 10:00:43 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:18:53 -0500 |
commit | c73c81ea15b99ac7270f9092158bc150aa2be1e8 (patch) | |
tree | e4260b82776ff0f699126091299274036d2c5ce3 /packaging/debian/rules | |
parent | d6c1ad5c174f3b914927396cf3ec595543289109 (diff) | |
download | samba-c73c81ea15b99ac7270f9092158bc150aa2be1e8.tar.gz samba-c73c81ea15b99ac7270f9092158bc150aa2be1e8.tar.bz2 samba-c73c81ea15b99ac7270f9092158bc150aa2be1e8.zip |
r7942: Debian packages updates and fixes. Use dh_install for diverting
files to different packages.
(This used to be commit da706b14ab9391cc8af1789f3533a94ab935150f)
Diffstat (limited to 'packaging/debian/rules')
-rwxr-xr-x | packaging/debian/rules | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/packaging/debian/rules b/packaging/debian/rules index 7b303f728e..2d0505d225 100755 --- a/packaging/debian/rules +++ b/packaging/debian/rules @@ -3,7 +3,7 @@ # Made with the aid of debmake, by Christoph Lameter, # based on the sample debian/rules file for GNU hello by Ian Jackson. -SOURCEPATH=../../source +SOURCEPATH=../source package=samba4 @@ -27,18 +27,21 @@ configure: build: configure dh_testdir - cd $(SOURCEPATH) && $(MAKE) proto all + $(MAKE) -C $(SOURCEPATH) proto + -$(MAKE) -C $(SOURCEPATH) pch + $(MAKE) -C $(SOURCEPATH) all touch $@ clean: dh_testdir dh_clean rm -f build - -cd $(SOURCEPATH) && $(MAKE) clean + -$(MAKE) -C $(SOURCEPATH) clean binary-indep: build install dh_testdir -i dh_testroot -i + dh_install -i --sourcedir=debian/tmp dh_installdocs -i dh_installchangelogs -i dh_compress -i @@ -55,11 +58,13 @@ binary-indep: build install install: build dh_clean -k dh_installdirs - $(MAKE) -C $(SOURCEPATH) install DESTDIR=`pwd`/../packaging/debian/tmp + $(MAKE) -C $(SOURCEPATH) install DESTDIR=$(CURDIR)/debian/tmp + cp debian/smb.conf $(CURDIR)/debian/tmp/etc/samba4 binary-arch: build install dh_testdir -a dh_testroot -a + dh_install -a --sourcedir=debian/tmp dh_installdocs -a dh_installman -a dh_strip -a |