[gnumeric] Update configure.in references to configure.ac
- From: J.H.M. Dassen (Ray) <jdassen src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnumeric] Update configure.in references to configure.ac
- Date: Wed, 16 Jan 2013 07:29:53 +0000 (UTC)
commit ce87ba8bf9fdd72cb2464a043f1f0d3e6e99e331
Author: J.H.M. Dassen (Ray) <jdassen debian org>
Date: Wed Jan 16 08:29:41 2013 +0100
Update configure.in references to configure.ac
plugins/README | 2 +-
tools/check-config-h.pl | 2 +-
tools/check-cvs-binary | 2 +-
tools/check-files | 2 +-
tools/check-finalizers | 2 +-
tools/check-gfrees | 2 +-
tools/check-glade-parsing | 2 +-
tools/check-glade-visible | 2 +-
tools/check-gtk-includes | 2 +-
tools/check-header-guards | 2 +-
tools/check-null-false-returns | 2 +-
tools/check-trailing-commas | 2 +-
tools/check-unreferenced | 2 +-
tools/grand-rename | 2 +-
tools/release-do-CLog | 2 +-
tools/release-do-bump | 6 +++---
16 files changed, 18 insertions(+), 18 deletions(-)
---
diff --git a/plugins/README b/plugins/README
index b40caf7..f0c3c26 100644
--- a/plugins/README
+++ b/plugins/README
@@ -5,7 +5,7 @@ have turned out so far.
When you add or delete files, don't forget...
* Edit po/POTFILES.in
-* Edit configure.in
+* Edit configure.ac
* Edit plugins/Makefile.am
diff --git a/tools/check-config-h.pl b/tools/check-config-h.pl
index d5a5629..d01a7ed 100755
--- a/tools/check-config-h.pl
+++ b/tools/check-config-h.pl
@@ -95,7 +95,7 @@ exit $exitcode;
sub guess_config_file {
local (*FIL);
$configfile = "config.h";
- open (*FIL, "<configure.in") || return $configfile;
+ open (*FIL, "<configure.ac") || return $configfile;
while (<FIL>) {
if (/^AM_CONFIG_HEADER\((.*)\)/) {
$configfile = $1;
diff --git a/tools/check-cvs-binary b/tools/check-cvs-binary
index 3fa67c2..1de853e 100755
--- a/tools/check-cvs-binary
+++ b/tools/check-cvs-binary
@@ -25,7 +25,7 @@ use strict;
my $exitcode = 0;
die "$0: must be run from top-level directory.\n"
- unless -r "configure.in" && -r 'ChangeLog';
+ unless -r "configure.ac" && -r 'ChangeLog';
# The following are not binary files, regardless of their names.
my %exceptions =
diff --git a/tools/check-files b/tools/check-files
index d27efed..e6975f3 100755
--- a/tools/check-files
+++ b/tools/check-files
@@ -25,7 +25,7 @@ use strict;
my $exitcode = 0;
die "$0: must be run from top-level directory.\n"
- unless (-r "configure.in" &&
+ unless (-r "configure.ac" &&
-r 'ChangeLog' &&
-r 'po/POTFILES.in');
diff --git a/tools/check-finalizers b/tools/check-finalizers
index 533d872..3726f8e 100644
--- a/tools/check-finalizers
+++ b/tools/check-finalizers
@@ -27,7 +27,7 @@ my $verbose = 0;
my $strict = 0;
warn "$0: should be run from top-level directory.\n"
- unless -r "configure.in" && -r 'ChangeLog';
+ unless -r "configure.ac" && -r 'ChangeLog';
my %base_exceptions =
();
diff --git a/tools/check-gfrees b/tools/check-gfrees
index d1db44f..69a5e2e 100644
--- a/tools/check-gfrees
+++ b/tools/check-gfrees
@@ -27,7 +27,7 @@ my $verbose = 0;
my $strict = 0;
warn "$0: should be run from top-level directory.\n"
- unless -r "configure.in" && -r 'ChangeLog';
+ unless -r "configure.ac" && -r 'ChangeLog';
my %base_exceptions =
();
diff --git a/tools/check-glade-parsing b/tools/check-glade-parsing
index d334cc9..ad419a3 100755
--- a/tools/check-glade-parsing
+++ b/tools/check-glade-parsing
@@ -26,7 +26,7 @@ use XML::Parser;
my $exitcode = 0;
die "$0: must be run from top-level directory.\n"
- unless -r "configure.in" && -r 'ChangeLog';
+ unless -r "configure.ac" && -r 'ChangeLog';
my %exceptions = ();
diff --git a/tools/check-glade-visible b/tools/check-glade-visible
index 3f40ab1..54587fa 100755
--- a/tools/check-glade-visible
+++ b/tools/check-glade-visible
@@ -25,7 +25,7 @@ use strict;
my $exitcode = 0;
die "$0: must be run from top-level directory.\n"
- unless -r "configure.in" && -r 'ChangeLog';
+ unless -r "configure.ac" && -r 'ChangeLog';
my %exceptions =
(
diff --git a/tools/check-gtk-includes b/tools/check-gtk-includes
index e99feae..70a2a6d 100755
--- a/tools/check-gtk-includes
+++ b/tools/check-gtk-includes
@@ -27,7 +27,7 @@ my $verbose = 0;
my $strict = 0;
warn "$0: should be run from top-level directory.\n"
- unless -r "configure.in" && -r 'ChangeLog';
+ unless -r "configure.ac" && -r 'ChangeLog';
my %base_exceptions =
();
diff --git a/tools/check-header-guards b/tools/check-header-guards
index ec2254d..9d5b9d5 100755
--- a/tools/check-header-guards
+++ b/tools/check-header-guards
@@ -26,7 +26,7 @@ my $exitcode = 0;
my $verbose = 0;
warn "$0: should be run from top-level directory.\n"
- unless -r "configure.in" && -r 'ChangeLog';
+ unless -r "configure.ac" && -r 'ChangeLog';
my %base_exceptions =
('acconfig.h' => 1,
diff --git a/tools/check-null-false-returns b/tools/check-null-false-returns
index 36b09bc..835c4ab 100644
--- a/tools/check-null-false-returns
+++ b/tools/check-null-false-returns
@@ -27,7 +27,7 @@ my $verbose = 0;
my $strict = 0;
warn "$0: should be run from top-level directory.\n"
- unless -r "configure.in" && -r 'ChangeLog';
+ unless -r "configure.ac" && -r 'ChangeLog';
my %base_exceptions =
();
diff --git a/tools/check-trailing-commas b/tools/check-trailing-commas
index fc9d6ca..f961892 100644
--- a/tools/check-trailing-commas
+++ b/tools/check-trailing-commas
@@ -26,7 +26,7 @@ my $exitcode = 0;
my $verbose = 0;
warn "$0: should be run from top-level directory.\n"
- unless -r "configure.in" && -r 'ChangeLog';
+ unless -r "configure.ac" && -r 'ChangeLog';
my %base_exceptions =
();
diff --git a/tools/check-unreferenced b/tools/check-unreferenced
index e57089d..5a778f4 100755
--- a/tools/check-unreferenced
+++ b/tools/check-unreferenced
@@ -32,7 +32,7 @@ use strict;
my $exitcode = 0;
die "$0: must be run from top-level directory.\n"
- unless (-r "configure.in" &&
+ unless (-r "configure.ac" &&
-r 'ChangeLog' &&
-d 'src');
diff --git a/tools/grand-rename b/tools/grand-rename
index 6e763b0..e39bce3 100644
--- a/tools/grand-rename
+++ b/tools/grand-rename
@@ -4,7 +4,7 @@
use strict;
die "$0: must be run from top-level directory.\n"
- unless (-r "configure.in" &&
+ unless (-r "configure.ac" &&
-r 'ChangeLog' &&
-r 'po/POTFILES.in');
diff --git a/tools/release-do-CLog b/tools/release-do-CLog
index 25839e4..5125732 100755
--- a/tools/release-do-CLog
+++ b/tools/release-do-CLog
@@ -3,7 +3,7 @@
use strict;
die "$0: must be run from top-level directory.\n"
- unless -r "configure.in" && -r 'ChangeLog';
+ unless -r "configure.ac" && -r 'ChangeLog';
my $newversion = $ARGV[0];
die "$0: you must supply the new version as argument.\n"
diff --git a/tools/release-do-bump b/tools/release-do-bump
index 5c08d48..211ee73 100644
--- a/tools/release-do-bump
+++ b/tools/release-do-bump
@@ -3,7 +3,7 @@
use strict;
die "$0: must be run from top-level directory.\n"
- unless -r "configure.in" && -r 'ChangeLog';
+ unless -r "configure.ac" && -r 'ChangeLog';
my $email = $ENV{'EMAIL'};
die "$0: you must define \$EMAIL.\n"
@@ -21,7 +21,7 @@ my $date = sprintf ("%04d-%02d-%02d", $y, $m, $d);
# -----------------------------------------------------------------------------
{
- my $filename = 'configure.in';
+ my $filename = 'configure.ac';
local (*SRC);
local (*DST);
@@ -79,7 +79,7 @@ my $date = sprintf ("%04d-%02d-%02d", $y, $m, $d);
{
my $filename = 'ChangeLog';
- my $entry = "$date $name <$email>\n\n\t* configure.in: Post-release bump.\n\n";
+ my $entry = "$date $name <$email>\n\n\t* configure.ac: Post-release bump.\n\n";
local (*SRC);
local (*DST);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]