summaryrefslogtreecommitdiff
path: root/l10ntools
diff options
context:
space:
mode:
authorAndras Timar <atimar@suse.com>2011-12-19 00:16:20 +0100
committerAndras Timar <atimar@suse.com>2011-12-19 00:20:31 +0100
commitd4b573ec4ccedc6522fed32eb91aede9f5f37da5 (patch)
tree281a459b0d7987dba82038327e4f0a209b62bfd4 /l10ntools
parentde30370096b82e4ea24c13b7c7e8f525e074fe60 (diff)
add propex.bat, so propex Perl script can run under Win32
Diffstat (limited to 'l10ntools')
-rw-r--r--l10ntools/prj/d.lst1
-rwxr-xr-xl10ntools/scripts/propex.bat8
2 files changed, 9 insertions, 0 deletions
diff --git a/l10ntools/prj/d.lst b/l10ntools/prj/d.lst
index ee088ffc8ec6..95675a7011f1 100644
--- a/l10ntools/prj/d.lst
+++ b/l10ntools/prj/d.lst
@@ -39,6 +39,7 @@ mkdir: %_DEST%\bin\help\com\sun\star\help
..\scripts\addkeyid2pot.pl %_DEST%\bin\addkeyid2pot.pl
..\scripts\po2lo %_DEST%\bin\po2lo
..\scripts\propex %_DEST%\bin\propex
+..\scripts\propex.bat %_DEST%\bin\propex.bat
..\scripts\propmerge %_DEST%\bin\propmerge
..\inc\export.hxx %_DEST%\inc\l10ntools\export.hxx
..\inc\l10ntools\directory.hxx %_DEST%\inc\l10ntools\directory.hxx
diff --git a/l10ntools/scripts/propex.bat b/l10ntools/scripts/propex.bat
new file mode 100755
index 000000000000..1174286920da
--- /dev/null
+++ b/l10ntools/scripts/propex.bat
@@ -0,0 +1,8 @@
+@echo off
+
+if "x%PERL%x" EQU "xx" (
+ echo ERROR: Perl not found. Environment is not set.
+ exit /b 1
+)
+
+%PERL% %SOLARVER%\%INPATH%\bin\propex %* \ No newline at end of file