aboutsummaryrefslogtreecommitdiff
path: root/mmoc
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
commit0909e15a9b2a7831a792042cdf0932a0d0309f87 (patch)
treee905dc01fe9b786a59b7e1eef46b1517564c86a6 /mmoc
parent41aed2f2770616276b29f0aa1e87cf1ef48f8d58 (diff)
Changes: Windows build fixes
RevBy: Holger Schroder Details: 1. setting DUI_SOURCE_TREE in configure script for windows 2. ifdef for getpid() 3. mmoc file exist check skiped on windows
Diffstat (limited to 'mmoc')
-rwxr-xr-xmmoc/mmoc4
1 files changed, 3 insertions, 1 deletions
diff --git a/mmoc/mmoc b/mmoc/mmoc
index 1d0e1d09..eb3db1e9 100755
--- a/mmoc/mmoc
+++ b/mmoc/mmoc
@@ -6,7 +6,9 @@ $::QT_MOC_PATH = find_moc ();
if (! -x $::QT_MOC_PATH) {
print "Unable to find moc, or is not executable\n";
- exit (1);
+ if ( "MSWin32" ne "$OSNAME" ) {
+ exit (1);
+ }
}
chomp( $::QT_MOC_PATH );