aboutsummaryrefslogtreecommitdiff
path: root/configure-win32.pl
diff options
context:
space:
mode:
authorMiroslav Safr <miroslav.safr@tieto.com>2010-04-22 11:13:25 +0300
committerDaniel d'Andrada <daniel.dandrada@nokia.com>2010-04-27 09:07:57 +0300
commit41aed2f2770616276b29f0aa1e87cf1ef48f8d58 (patch)
treedd1871963b3eb2a7e7b3fa7eaa9fb9c083c848cb /configure-win32.pl
parentadd7491e671ca979241a0ae4ba343889cab41e4c (diff)
Changes: Windows build fixes
RevBy: Holger Schroder Details: 1. setting M_SOURCE_TREE in configure script for windows 2. ifdef for getpid() https://reviewboard.projects.maemo.org/r/7738/
Diffstat (limited to 'configure-win32.pl')
-rw-r--r--configure-win32.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure-win32.pl b/configure-win32.pl
index d78acc7b..65491ba3 100644
--- a/configure-win32.pl
+++ b/configure-win32.pl
@@ -11,8 +11,8 @@ print "inpath : $inpath\n";
print "outpath: $outpath\n";
open( CACHE, ">$outpath/.qmake.cache" );
-print CACHE "DUI_BUILD_TREE = \$\$quote($outpath)\n";
-print CACHE "DUI_SOURCE_TREE = \$\$quote($inpath)\n";
+print CACHE "M_BUILD_TREE = \$\$quote($outpath)\n";
+print CACHE "M_SOURCE_TREE = \$\$quote($inpath)\n";
close( CACHE );
$specpath = "$outpath/mkspecs/features";