mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 19:08:09 +01:00
debian: call upstream configure script directly
dh defaults for dh_auto_configure are now incompatible with notmuch's homebrew configure script (at least in debian experimental)
This commit is contained in:
parent
fa11a62de0
commit
93233ba09e
1 changed files with 8 additions and 1 deletions
9
debian/rules
vendored
9
debian/rules
vendored
|
@ -6,7 +6,14 @@ python3_all = py3versions -s | xargs -n1 | xargs -t -I {} env {}
|
||||||
dh $@ --with python2,python3
|
dh $@ --with python2,python3
|
||||||
|
|
||||||
override_dh_auto_configure:
|
override_dh_auto_configure:
|
||||||
dh_auto_configure -- --emacslispdir=/usr/share/emacs/site-lisp/notmuch
|
./configure --prefix=/usr \
|
||||||
|
--libdir=/usr/lib/$$(dpkg-architecture -q DEB_TARGET_MULTIARCH) \
|
||||||
|
--includedir=/usr/include \
|
||||||
|
--mandir=/usr/share/man \
|
||||||
|
--infodir=/usr/share/info \
|
||||||
|
--sysconfdir=/etc \
|
||||||
|
--localstatedir=/var \
|
||||||
|
--emacslispdir=/usr/share/emacs/site-lisp/notmuch
|
||||||
|
|
||||||
override_dh_auto_build:
|
override_dh_auto_build:
|
||||||
dh_auto_build -- V=1
|
dh_auto_build -- V=1
|
||||||
|
|
Loading…
Reference in a new issue