diff options
author | Luboš Luňák <l.lunak@suse.cz> | 2012-03-30 10:41:01 +0200 |
---|---|---|
committer | Luboš Luňák <l.lunak@suse.cz> | 2012-03-30 10:41:01 +0200 |
commit | d6b806aa589683561ee5afd0895df3eb7e009085 (patch) | |
tree | d6e9b743bf7194f69dc46f2cc5c95a3f7597ddb1 /io | |
parent | 8be1a00efb10c427cb05412250fe4442959f75a0 (diff) |
fix build
Apparently the order in makefile.mk matters. Without this higher,
acceptor.uno.dll does not get built.
Diffstat (limited to 'io')
-rw-r--r-- | io/source/acceptor/makefile.mk | 4 | ||||
-rw-r--r-- | io/source/connector/makefile.mk | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/io/source/acceptor/makefile.mk b/io/source/acceptor/makefile.mk index 566c2b5ca51d..6e23b3ceb77f 100644 --- a/io/source/acceptor/makefile.mk +++ b/io/source/acceptor/makefile.mk @@ -72,6 +72,8 @@ DEF1NAME= $(SHL1TARGET) .ENDIF # L10N_framework +.INCLUDE : target.mk + .IF "$(OS)" != "IOS" $(MISC)/acceptor.component .ERRREMOVE : $(SOLARENV)/bin/createcomponent.xslt \ @@ -83,5 +85,3 @@ $(MISC)/acceptor.component .ERRREMOVE : $(SOLARENV)/bin/createcomponent.xslt \ ALLTAR : $(MISC)/acceptor.component .ENDIF # IOS - -.INCLUDE : target.mk diff --git a/io/source/connector/makefile.mk b/io/source/connector/makefile.mk index 2470b614eb35..a4f7956f8350 100644 --- a/io/source/connector/makefile.mk +++ b/io/source/connector/makefile.mk @@ -72,6 +72,8 @@ DEF1NAME= $(SHL1TARGET) .ENDIF # L10N_framework +.INCLUDE : target.mk + .IF "$(OS)" != "IOS" ALLTAR : $(MISC)/connector.component @@ -83,5 +85,3 @@ $(MISC)/connector.component .ERRREMOVE : $(SOLARENV)/bin/createcomponent.xslt \ $(SOLARENV)/bin/createcomponent.xslt connector.component .ENDIF # IOS - -.INCLUDE : target.mk |