Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
ac7e6c06
Commit
ac7e6c06
authored
17 years ago
by
Magnus Hagander
Browse files
Options
Downloads
Patches
Plain Diff
Fix build for directories with spaces in them by quoting properly.
Joachim Wieland
parent
b7edb568
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/tools/msvc/Install.pm
+2
-2
2 additions, 2 deletions
src/tools/msvc/Install.pm
src/tools/msvc/vcregress.bat
+4
-4
4 additions, 4 deletions
src/tools/msvc/vcregress.bat
with
6 additions
and
6 deletions
src/tools/msvc/Install.pm
+
2
−
2
View file @
ac7e6c06
...
...
@@ -3,7 +3,7 @@ package Install;
#
# Package that provides 'make install' functionality for msvc builds
#
# $PostgreSQL: pgsql/src/tools/msvc/Install.pm,v 1.1
0
2007/04/
12 12:46:20
mha Exp $
# $PostgreSQL: pgsql/src/tools/msvc/Install.pm,v 1.1
1
2007/04/
21 20:58:05
mha Exp $
#
use
strict
;
use
warnings
;
...
...
@@ -210,7 +210,7 @@ sub GenerateTimezoneFiles
my
@tzfiles
=
split
/\s+/
,
$
1
;
unshift
@tzfiles
,'';
print
"
Generating timezone files...
";
system
("
$conf
\\
zic
\\
zic -d
$target
/share/timezone
"
.
join
("
src/timezone/data/
",
@tzfiles
));
system
("
$conf
\\
zic
\\
zic -d
\"
$target
/share/timezone
\"
"
.
join
("
src/timezone/data/
",
@tzfiles
));
print
"
\n
";
}
...
...
This diff is collapsed.
Click to expand it.
src/tools/msvc/vcregress.bat
+
4
−
4
View file @
ac7e6c06
@echo
off
REM $PostgreSQL: pgsql/src/tools/msvc/vcregress.bat,v 1.1
0
2007/04/
06 13:44:39 adunstan
Exp $
REM $PostgreSQL: pgsql/src/tools/msvc/vcregress.bat,v 1.1
1
2007/04/
21 20:58:05 mha
Exp $
SETLOCAL
SET
STARTDIR
=
%CD%
...
...
@@ -30,13 +30,13 @@ IF NOT "%2"=="" SET SCHEDULE=%2
SET
PERL5LIB
=
..\..\tools\msvc
if
"
%what%
"
==
"INSTALLCHECK"
..\..\..\
%CONFIG%
\pg_regress\pg_regress
--psqldir
=
..\..\..\
%CONFIG%
\psql
--schedule
=
%SCHEDULE%
_schedule
--multibyte
=
SQL_ASCII
--load-language
=
plpgsql
--no-locale
if
"
%what%
"
==
"CHECK"
..\..\..\
%CONFIG%
\pg_regress\pg_regress
--psqldir
=
..\..\..\
%CONFIG%
\psql
--schedule
=
%SCHEDULE%
_schedule
--multibyte
=
SQL_ASCII
--load-language
=
plpgsql
--no-locale --temp-install
=
./tmp_check
--top-builddir
=
%TOPDIR%
--temp-port
=
%TEMPPORT%
if
"
%what%
"
==
"INSTALLCHECK"
..\..\..\
%CONFIG%
\pg_regress\pg_regress
--psqldir
=
"
..\..\..\
%CONFIG%
\psql
"
--schedule
=
%SCHEDULE%
_schedule
--multibyte
=
SQL_ASCII
--load-language
=
plpgsql
--no-locale
if
"
%what%
"
==
"CHECK"
..\..\..\
%CONFIG%
\pg_regress\pg_regress
--psqldir
=
"
..\..\..\
%CONFIG%
\psql
"
--schedule
=
%SCHEDULE%
_schedule
--multibyte
=
SQL_ASCII
--load-language
=
plpgsql
--no-locale --temp-install
=
./tmp_check
--top-builddir
=
"
%TOPDIR%
"
--temp-port
=
%TEMPPORT%
if
"
%what%
"
==
"PLCHECK"
call
:plcheck
if
"
%what%
"
==
"CONTRIBCHECK"
call
:contribcheck
SET
E
=
%ERRORLEVEL%
cd
%STARTDIR%
cd
"
%STARTDIR%
"
exit
/b
%E%
:usage
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment