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 | 5b2962b98121baa350f247125128769e3b754b3b (patch) | |
tree | fd9a1ff28850072a2399db121d323c0c7627b8d9 /automation/util | |
parent | 4d8960dcde5699ebed7f6eea21fc7ee8044bcc6f (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 e683e7363..756a3d6a6 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) |