On Wed, 2010-12-01 at 22:02 +0100, Matthieu Herrb wrote: > This fixes issues with make creating a spurious [makedep-config.h].in file, > at least on OpenBSD builds. > > Signed-off-by: Matthieu Herrb <[email protected]> > --- > configure.ac | 1 + > 1 files changed, 1 insertions(+), 0 deletions(-) > > diff --git a/configure.ac b/configure.ac > index ca7c115..33e9b94 100644 > --- a/configure.ac > +++ b/configure.ac > @@ -2,6 +2,7 @@ AC_PREREQ([2.60]) > AC_INIT([makedepend], [1.0.3], > [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg]) > AM_INIT_AUTOMAKE([foreign dist-bzip2]) > +AM_MAINTAINER_MODE > AM_CONFIG_HEADER([makedepend-config.h]) > > # Require X.Org macros 1.8 or later for MAN_SUBSTS set by > XORG_MANPAGE_SECTIONS > -- > 1.7.3.2 > >
Reviewed-by: Gaetan Nadon <[email protected]> That's consistent with all other xorg modules. That will only fix this issue if the package is configured by invoking ./configure and not ./autogen.sh. Make will reconfigure the package if the configuration has changed (or timestamps got changed). AM_MAINTAINER_MODE turns off those rebuild rules unless autogen.sh is invoked which invokes ./configure with --enable-maintainer-mode. This behaves the same way on all platforms. If there were a difference in behavior on OpenBSD, it would also be observable on any other package.
signature.asc
Description: This is a digitally signed message part
_______________________________________________ [email protected]: X.Org development Archives: http://lists.x.org/archives/xorg-devel Info: http://lists.x.org/mailman/listinfo/xorg-devel
