aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMagnus Hagander <magnus@hagander.net>2008-08-16 12:42:27 +0000
committerMagnus Hagander <magnus@hagander.net>2008-08-16 12:42:27 +0000
commit19c1e68e16142193069a2b4b01d106516034ee98 (patch)
treeb70a51e02d2a585c0e9bc163e7e8b915e6093ff3 /src
parent58e8f9630ad44750dc65ed87bc50d5ce6e95994a (diff)
downloadpostgresql-19c1e68e16142193069a2b4b01d106516034ee98.tar.gz
postgresql-19c1e68e16142193069a2b4b01d106516034ee98.zip
probes.h is generated from probes.d, not pg_trace.d.
Diffstat (limited to 'src')
-rw-r--r--src/tools/msvc/Solution.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/msvc/Solution.pm b/src/tools/msvc/Solution.pm
index 192c22bfcf2..3c31c63359e 100644
--- a/src/tools/msvc/Solution.pm
+++ b/src/tools/msvc/Solution.pm
@@ -3,7 +3,7 @@ package Solution;
#
# Package that encapsulates a Visual C++ solution file generation
#
-# $PostgreSQL: pgsql/src/tools/msvc/Solution.pm,v 1.43 2008/06/24 01:15:36 tgl Exp $
+# $PostgreSQL: pgsql/src/tools/msvc/Solution.pm,v 1.44 2008/08/16 12:42:27 mha Exp $
#
use Carp;
use strict;
@@ -207,7 +207,7 @@ s{PG_VERSION_STR "[^"]+"}{__STRINGIFY(x) #x\n#define __STRINGIFY2(z) __STRINGIFY
copyFile('src\backend\utils\fmgroids.h','src\include\utils\fmgroids.h');
}
- if (IsNewer('src\include\utils\probes.h','src\backend\utils\pg_trace.d'))
+ if (IsNewer('src\include\utils\probes.h','src\backend\utils\probes.d'))
{
print "Generating probes.h...\n";
system('psed -f src\backend\utils\Gen_dummy_probes.sed src\backend\utils\probes.d > src\include\utils\probes.h');