diff options
author | tono <tono@openoffice.org> | 2010-06-18 23:06:49 +0900 |
---|---|---|
committer | tono <tono@openoffice.org> | 2010-06-18 23:06:49 +0900 |
commit | 2552225a7d62185b9007a117ecb7fd095c0f982d (patch) | |
tree | a8086fc4300766c5880dfda1482dd4294a239a31 /automation/util | |
parent | b9d8770835a54aca6a59273c51b71f8a0240b72a (diff) |
i#111956: MinGW port fix: dependency to shared library: pure porting fix again
Diffstat (limited to 'automation/util')
-rw-r--r-- | automation/util/makefile.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/automation/util/makefile.mk b/automation/util/makefile.mk index e683e73631b8..756a3d6a62e4 100644 --- a/automation/util/makefile.mk +++ b/automation/util/makefile.mk @@ -136,7 +136,7 @@ DEF3DES =Communication APP1TARGET=testtool -.IF "$(GUI)" == "UNX" +.IF "$(GUI)"=="UNX" || ("$(COM)"=="GCC" && "$(GUI)"=="WNT") APP1DEPN+=$(SHL2TARGETN) $(SHL3TARGETN) .ELSE APP1DEPN+=$(SHL2IMPLIBN) $(SHL3IMPLIBN) @@ -228,7 +228,7 @@ APP3STDLIBS+= \ .ENDIF .ENDIF # $(AUTOMATIONLIB) is build in SHL1TARGET -.IF "$(GUI)"=="UNX" +.IF "$(GUI)"=="UNX" || ("$(COM)"=="GCC" && "$(GUI)"=="WNT") APP3DEPN=$(SHL1TARGETN) .ELSE APP3DEPN=$(SHL1IMPLIBN) |