diff options
author | Matúš Kukan <matus.kukan@gmail.com> | 2011-09-29 22:00:24 +0200 |
---|---|---|
committer | Matúš Kukan <matus.kukan@gmail.com> | 2011-10-01 17:26:24 +0200 |
commit | a116d39db624719337b0a8bf3603f8a11eb2cc42 (patch) | |
tree | df929c4e55660af94a7d36f2925ba5e9506ff3cc /scp2/source | |
parent | a79a93722c80f6e055593a79b9e0b0aec9a49a0e (diff) |
finished converting scripting to gbuild
Diffstat (limited to 'scp2/source')
-rw-r--r-- | scp2/source/ooo/file_library_ooo.scp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/scp2/source/ooo/file_library_ooo.scp b/scp2/source/ooo/file_library_ooo.scp index ec58f59de245..22a19a373a7c 100644 --- a/scp2/source/ooo/file_library_ooo.scp +++ b/scp2/source/ooo/file_library_ooo.scp @@ -46,9 +46,9 @@ File gid_File_Lib_Basprov Styles = (PACKED); Dir = SCP2_OOO_BIN_DIR; #ifdef UNX - Name = STRING(CONCAT4(basprov,DLLPOSTFIX,.uno,UNXSUFFIX)); + Name = STRING(CONCAT3(basprov,.uno,UNXSUFFIX)); #else - Name = STRING(CONCAT4(basprov,DLLPOSTFIX,.uno,.dll)); + Name = STRING(CONCAT3(basprov,.uno,.dll)); #endif End @@ -57,9 +57,9 @@ File gid_File_Lib_Vbaevent Styles = (PACKED); Dir = SCP2_OOO_BIN_DIR; #ifdef UNX - Name = STRING(CONCAT4(vbaevents,DLLPOSTFIX,.uno,UNXSUFFIX)); + Name = STRING(CONCAT3(vbaevents,.uno,UNXSUFFIX)); #else - Name = STRING(CONCAT4(vbaevents,DLLPOSTFIX,.uno,.dll)); + Name = STRING(CONCAT3(vbaevents,.uno,.dll)); #endif End @@ -320,9 +320,9 @@ File gid_File_Lib_Dlgprov Styles = (PACKED); Dir = SCP2_OOO_BIN_DIR; #ifdef UNX - Name = STRING(CONCAT4(dlgprov,DLLPOSTFIX,.uno,UNXSUFFIX)); + Name = STRING(CONCAT3(dlgprov,.uno,UNXSUFFIX)); #else - Name = STRING(CONCAT4(dlgprov,DLLPOSTFIX,.uno,.dll)); + Name = STRING(CONCAT3(dlgprov,.uno,.dll)); #endif End @@ -331,9 +331,9 @@ File gid_File_Lib_Stringresource Styles = (PACKED); Dir = SCP2_OOO_BIN_DIR; #ifdef UNX - Name = STRING(CONCAT4(stringresource,DLLPOSTFIX,.uno,UNXSUFFIX)); + Name = STRING(CONCAT3(stringresource,.uno,UNXSUFFIX)); #else - Name = STRING(CONCAT4(stringresource,DLLPOSTFIX,.uno,.dll)); + Name = STRING(CONCAT3(stringresource,.uno,.dll)); #endif End |