[Genabel-commits] r1066 - pkg/ProbABEL

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Tue Jan 1 18:53:11 CET 2013


Author: lckarssen
Date: 2013-01-01 18:53:11 +0100 (Tue, 01 Jan 2013)
New Revision: 1066

Modified:
   pkg/ProbABEL/configure.ac
Log:
ProbABEL: Added an option to configure.ac that adds the --disable-maintainer-mode option to ./configure. The default behaviour is not changed by this change, but it allows creators of e.g. Debian packages or Gentoo ebuilds to disable the regeneration of autotools-generated files (which may cause trouble when maintainers and users/packagers have different versions of autotools installed (or don't have autotools installed at all). 

    - configure.ac: Added AM_MAINTAINER_MODE option, but set the default to 'enable' so that the old behaviour is kept. 


Modified: pkg/ProbABEL/configure.ac
===================================================================
--- pkg/ProbABEL/configure.ac	2013-01-01 17:49:57 UTC (rev 1065)
+++ pkg/ProbABEL/configure.ac	2013-01-01 17:53:11 UTC (rev 1066)
@@ -8,6 +8,12 @@
 AC_CONFIG_SRCDIR([src/data.h])
 AC_CONFIG_HEADERS([src/config.h])
 
+# Add the --disable-maintainer-mode option used by e.g. Debian and
+# Gentoo to disable rebuilding the autotools-generated files after
+# e.g. a patch has been applied to them. The default is 'disabled', we
+# change it here to keep the old behaviour by default.
+AM_MAINTAINER_MODE([enable])
+
 # Checks for programs.
 AC_PROG_CC
 AM_PROG_CC_C_O



More information about the Genabel-commits mailing list