diff options
author | Bruce Momjian <bruce@momjian.us> | 2004-08-15 00:41:51 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2004-08-15 00:41:51 +0000 |
commit | 2284cfa255f2af168e59f2377427dd8ebc3a0f1d (patch) | |
tree | e9ce986bcb7b0ab662448e1f6cf27ece1140ea0c | |
parent | e76bcb855be28c1e7de24bad0ff392a4b9c5adc4 (diff) | |
download | postgresql-2284cfa255f2af168e59f2377427dd8ebc3a0f1d.tar.gz postgresql-2284cfa255f2af168e59f2377427dd8ebc3a0f1d.zip |
Quote PERL expansion for Win32 path that might have spaces.
-rw-r--r-- | src/Makefile.global.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile.global.in b/src/Makefile.global.in index ab2d600174b..c6fa0db8f41 100644 --- a/src/Makefile.global.in +++ b/src/Makefile.global.in @@ -1,5 +1,5 @@ # -*-makefile-*- -# $PostgreSQL: pgsql/src/Makefile.global.in,v 1.191 2004/08/01 06:19:19 momjian Exp $ +# $PostgreSQL: pgsql/src/Makefile.global.in,v 1.192 2004/08/15 00:41:51 momjian Exp $ #------------------------------------------------------------------------------ # All PostgreSQL makefiles include this file and use the variables it sets, @@ -207,7 +207,7 @@ X = @EXEEXT@ # Perl -PERL = @PERL@ +PERL = "@PERL@" # quoted for pathname with spaces perl_archlibexp = @perl_archlibexp@ perl_privlibexp = @perl_privlibexp@ perl_useshrplib = @perl_useshrplib@ |