From a116d39db624719337b0a8bf3603f8a11eb2cc42 Mon Sep 17 00:00:00 2001 From: Matúš Kukan Date: Thu, 29 Sep 2011 22:00:24 +0200 Subject: finished converting scripting to gbuild --- scp2/source/ooo/file_library_ooo.scp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'scp2/source') 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 -- cgit