diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2017-02-12 18:19:55 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2017-02-12 18:19:55 +0000 |
commit | 28296ed43ca31749964456fb792b1b6492dbc6ba (patch) | |
tree | c7f9c17c12494b309f055964d190c122b426819d /share | |
parent | a59b8927613237486e00ebe72ccda2f8883211c9 (diff) |
replace XENOCARA_RERUN_AUTOCONF setting with autoreconf make target.
The previous mechanism didn't play well with the new separated build
user.
Diffstat (limited to 'share')
-rw-r--r-- | share/mk/bsd.xorg.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/share/mk/bsd.xorg.mk b/share/mk/bsd.xorg.mk index 92452bbc5..961353287 100644 --- a/share/mk/bsd.xorg.mk +++ b/share/mk/bsd.xorg.mk @@ -1,4 +1,4 @@ -# $OpenBSD: bsd.xorg.mk,v 1.57 2016/11/19 14:22:05 tb Exp $ -*- makefile -*- +# $OpenBSD: bsd.xorg.mk,v 1.58 2017/02/12 18:19:54 matthieu Exp $ -*- makefile -*- # # Copyright © 2006,2012 Matthieu Herrb # @@ -141,11 +141,11 @@ all: config.status @exec ${MAKE} ${_lt_libs} .endif +autoreconf: + cd ${_SRCDIR}; ${AUTOTOOLS_ENV} exec autoreconf -v --install --force + .if !target(config.status) config.status: -.if defined(XENOCARA_RERUN_AUTOCONF) && ${XENOCARA_RERUN_AUTOCONF:L} == "yes" - cd ${_SRCDIR}; ${AUTOTOOLS_ENV} exec autoreconf -v --install --force -.endif ${CONFIGURE_ENV} PATH=$(XENOCARA_PATH) \ exec sh ${_SRCDIR}/configure --prefix=${X11BASE} \ --sysconfdir=/etc \ |