* aclocal.in, automake.in: Requote each "@var@" as '@var@'.
authorAlexandre Duret-Lutz <adl@gnu.org>
Sun, 15 Sep 2002 17:44:26 +0000 (17:44 +0000)
committerAlexandre Duret-Lutz <adl@gnu.org>
Sun, 15 Sep 2002 17:44:26 +0000 (17:44 +0000)
ChangeLog
aclocal.in
automake.in

index f9a6783..ee1b9f6 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2002-09-15  Alexandre Duret-Lutz  <duret_g@epita.fr>
 
+       * aclocal.in, automake.in: Requote each "@var@" as '@var@'.
+
+2002-09-14  Alexandre Duret-Lutz  <duret_g@epita.fr>
+
        * tests/Makefile.am (XFAIL_TESTS): Remove specflags7.test and
        specflags8.test.
 
index d8a4f69..1c0baea 100644 (file)
@@ -29,22 +29,22 @@ eval 'case $# in 0) exec @PERL@ -S "$0";; *) exec @PERL@ -S "$0" "$@";; esac'
 
 BEGIN
 {
-  my $prefix = "@prefix@";
-  my $perllibdir = $ENV{'perllibdir'} || "@datadir@/@PACKAGE@-@APIVERSION@";
-  unshift @INC, "$perllibdir";
+  my $prefix = '@prefix@';
+  my $perllibdir = $ENV{'perllibdir'} || '@datadir@/@PACKAGE@-@APIVERSION@';
+  unshift @INC, $perllibdir;
 }
 
 use Automake::General;
 use Automake::XFile;
 
 # Some constants.
-$VERSION = "@VERSION@";
-$APIVERSION = "@APIVERSION@";
-$PACKAGE = "@PACKAGE@";
-$prefix = "@prefix@";
+$VERSION = '@VERSION@';
+$APIVERSION = '@APIVERSION@';
+$PACKAGE = '@PACKAGE@';
+$prefix = '@prefix@';
 # Note that this isn't pkgdatadir, but a separate directory.
 # Note also that the versioned directory is handled later.
-$acdir = "@datadir@/aclocal";
+$acdir = '@datadir@/aclocal';
 $default_acdir = $acdir;
 # contains a list of directories, one per line, to be added
 # to the dirlist in addition to $acdir, as if -I had been
index 3c9c8c0..2cbe31a 100755 (executable)
@@ -31,9 +31,9 @@ package Language;
 
 BEGIN
 {
-  my $prefix = "@prefix@";
-  my $perllibdir = $ENV{'perllibdir'} || "@datadir@/@PACKAGE@-@APIVERSION@";
-  unshift @INC, "$perllibdir";
+  my $prefix = '@prefix@';
+  my $perllibdir = $ENV{'perllibdir'} || '@datadir@/@PACKAGE@-@APIVERSION@';
+  unshift @INC, $perllibdir;
 }
 
 use Automake::Struct;
@@ -125,10 +125,10 @@ use Carp;
 
 # Parameters set by configure.  Not to be changed.  NOTE: assign
 # VERSION as string so that eg version 0.30 will print correctly.
-my $VERSION = "@VERSION@";
-my $PACKAGE = "@PACKAGE@";
-my $prefix = "@prefix@";
-my $libdir = "@datadir@/@PACKAGE@-@APIVERSION@";
+my $VERSION = '@VERSION@';
+my $PACKAGE = '@PACKAGE@';
+my $prefix = '@prefix@';
+my $libdir = '@datadir@/@PACKAGE@-@APIVERSION@';
 
 # Some regular expressions.  One reason to put them here is that it
 # makes indentation work better in Emacs.