From 6112e0519d441ce1357b9133ee7ad6c359ab43ab Mon Sep 17 00:00:00 2001 From: Alexandre Duret-Lutz Date: Sun, 15 Sep 2002 17:44:26 +0000 Subject: [PATCH] * aclocal.in, automake.in: Requote each "@var@" as '@var@'. --- ChangeLog | 4 ++++ aclocal.in | 16 ++++++++-------- automake.in | 14 +++++++------- 3 files changed, 19 insertions(+), 15 deletions(-) diff --git a/ChangeLog b/ChangeLog index f9a67837..ee1b9f62 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2002-09-15 Alexandre Duret-Lutz + * aclocal.in, automake.in: Requote each "@var@" as '@var@'. + +2002-09-14 Alexandre Duret-Lutz + * tests/Makefile.am (XFAIL_TESTS): Remove specflags7.test and specflags8.test. diff --git a/aclocal.in b/aclocal.in index d8a4f69a..1c0baeab 100644 --- a/aclocal.in +++ b/aclocal.in @@ -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 diff --git a/automake.in b/automake.in index 3c9c8c03..2cbe31ad 100755 --- a/automake.in +++ b/automake.in @@ -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. -- 2.43.5