diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2012-08-08 21:54:34 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2012-08-08 21:54:34 +0000 |
commit | c40d2e76246c1a6254681d2e0c00a0b8e7a7c715 (patch) | |
tree | aedd07b749e884fd3ccb836d88d8289f0906057c /share | |
parent | 4e43007a2134e8360c010cdadc6760917daf197c (diff) |
Don't touch the xserver autotools files a 2nd time in kdrive.
This causes a rebuild of xserver during make release (configure
becomes more recent than config.status again).
Diffstat (limited to 'share')
-rw-r--r-- | share/mk/bsd.xorg.mk | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/share/mk/bsd.xorg.mk b/share/mk/bsd.xorg.mk index 3be292267..545ae9c81 100644 --- a/share/mk/bsd.xorg.mk +++ b/share/mk/bsd.xorg.mk @@ -1,4 +1,4 @@ -# $OpenBSD: bsd.xorg.mk,v 1.43 2012/08/05 18:08:05 matthieu Exp $ -*- makefile -*- +# $OpenBSD: bsd.xorg.mk,v 1.44 2012/08/08 21:54:33 matthieu Exp $ -*- makefile -*- # # Copyright © 2006,2012 Matthieu Herrb # @@ -155,6 +155,7 @@ config.status: .if defined(XENOCARA_RERUN_AUTOCONF) && ${XENOCARA_RERUN_AUTOCONF:L} == "yes" cd ${_SRCDIR}; ${AUTOTOOLS_ENV} exec autoreconf -v --install --force .else +.if !defined(NO_REORDER) @sed -e '/^#/d' ${REORDER_DEPENDENCIES} | \ tsort -r|while read f; do \ cd ${_SRCDIR}; \ @@ -170,6 +171,7 @@ config.status: ;; \ esac; done .endif +.endif ${CONFIGURE_ENV} PATH=$(XENOCARA_PATH) \ exec sh ${_SRCDIR}/configure --prefix=${X11BASE} \ --sysconfdir=/etc \ |