diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-08-21 23:56:47 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:34:18 -0500 |
commit | 390924883f7b0f869669e68fc798167c5a574092 (patch) | |
tree | 0cd3899c6162aab872841e5b130e05138870729c /packaging | |
parent | 59b13f9a1d684a632c2c73352f0ec08a63bc0913 (diff) | |
download | samba-390924883f7b0f869669e68fc798167c5a574092.tar.gz samba-390924883f7b0f869669e68fc798167c5a574092.tar.xz samba-390924883f7b0f869669e68fc798167c5a574092.zip |
r9461: Couple of very small fixes.
(This used to be commit f91121bded545b414b873cd3f3824556d0d2a42e)
Diffstat (limited to 'packaging')
-rwxr-xr-x | packaging/debian/rules | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packaging/debian/rules b/packaging/debian/rules index 4ae928a9e76..8c62eed660f 100755 --- a/packaging/debian/rules +++ b/packaging/debian/rules @@ -24,7 +24,7 @@ configure: --with-syslog \ --with-readline \ --with-ldap - cd $(SOURCEPATH)/build/pidl && perl Makefile.PL verbose INSTALLDIRS=vendor PREFIX=/usr + cd $(SOURCEPATH)/pidl && perl Makefile.PL verbose INSTALLDIRS=vendor PREFIX=/usr touch $@ build: configure @@ -32,7 +32,7 @@ build: configure $(MAKE) -C $(SOURCEPATH) proto -$(MAKE) -C $(SOURCEPATH) pch $(MAKE) -C $(SOURCEPATH) all - $(MAKE) -C $(SOURCEPATH)/build/pidl all + $(MAKE) -C $(SOURCEPATH)/pidl all touch $@ clean: @@ -65,7 +65,7 @@ install: build $(MAKE) -C $(SOURCEPATH) manpages installman DESTDIR=$(CURDIR)/debian/tmp mkdir -p $(CURDIR)/debian/tmp/etc/samba4 cp $(CURDIR)/debian/smb.conf $(CURDIR)/debian/tmp/etc/samba4 - $(MAKE) -C $(SOURCEPATH)/build/pidl install DESTDIR=$(CURDIR)/debian/tmp + $(MAKE) -C $(SOURCEPATH)/pidl install DESTDIR=$(CURDIR)/debian/tmp binary-arch: build install dh_testdir -a |