diff options
author | Tor Lillqvist <tlillqvist@novell.com> | 2011-06-18 01:07:31 +0300 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@novell.com> | 2011-06-18 01:07:31 +0300 |
commit | 31c65a35bfb6e3dd83742a61b2314f16021a36b1 (patch) | |
tree | 0ce632579e26c5666e60e91ee87ef23e040c3a15 | |
parent | a6d7605c22dd06e531609af710d6d18797af7de1 (diff) |
Use the i prefix for the import library only with MSC
-rwxr-xr-x | cppuhelper/source/makefile.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cppuhelper/source/makefile.mk b/cppuhelper/source/makefile.mk index a7fd2241344a..f10548282c18 100755 --- a/cppuhelper/source/makefile.mk +++ b/cppuhelper/source/makefile.mk @@ -162,7 +162,11 @@ SHL1STDLIBS += $(ADVAPI32LIB) .ENDIF SHL1DEPN= +.IF "$(COM)" == "MSC" SHL1IMPLIB=i$(TARGET) +.ELSE +SHL1IMPLIB=uno_$(TARGET)$(COMID) +.ENDIF SHL1OBJS = $(SLOFILES) SHL1RPATH=URELIB |