Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
b60ddffa
Commit
b60ddffa
authored
Apr 12, 2007
by
Magnus Hagander
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Install debugger symbols (in their own directory)
parent
4dd33650
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
src/tools/msvc/Install.pm
src/tools/msvc/Install.pm
+3
-2
No files found.
src/tools/msvc/Install.pm
View file @
b60ddffa
...
...
@@ -3,7 +3,7 @@ package Install;
#
# Package that provides 'make install' functionality for msvc builds
#
# $PostgreSQL: pgsql/src/tools/msvc/Install.pm,v 1.
9 2007/04/04 18:45:59 adunstan
Exp $
# $PostgreSQL: pgsql/src/tools/msvc/Install.pm,v 1.
10 2007/04/12 12:46:20 mha
Exp $
#
use
strict
;
use
warnings
;
...
...
@@ -38,7 +38,7 @@ sub Install
print
"
Installing for
$conf
\n
";
EnsureDirectories
(
$target
,
'
bin
','
lib
','
share
','
share/timezonesets
','
share/contrib
','
doc
',
'
doc/contrib
');
'
doc/contrib
'
,
'
symbols
'
);
CopySolutionOutput
(
$conf
,
$target
);
copy
(
$target
.
'
/lib/libpq.dll
',
$target
.
'
/bin/libpq.dll
');
...
...
@@ -162,6 +162,7 @@ sub CopySolutionOutput
next
;
}
copy
("
$conf
\\
$pf
\\
$pf
.
$ext
","
$target
\\
$dir
\\
$pf
.
$ext
")
||
croak
"
Could not copy
$pf
.
$ext
\n
";
copy
("
$conf
\\
$pf
\\
$pf
.pdb
","
$target
\\
symbols
\\
$pf
.pdb
")
||
croak
"
Could not copy
$pf
.pdb
\n
";
print
"
.
";
}
print
"
\n
";
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment