diff options
author | jan Iversen <jani@libreoffice.org> | 2017-10-16 14:14:30 +0200 |
---|---|---|
committer | jan Iversen <jani@libreoffice.org> | 2017-10-16 19:14:26 +0200 |
commit | 7e7329873b263917ff963b38dfd804727d0914d0 (patch) | |
tree | 1394eb1a809ab75bd3304d96aa4bbb2f7429daab /solenv/bin | |
parent | 172954db84ec4a2d38bf154c3199c5e16ee4f546 (diff) |
iOS, change prelink lib to pure C.
Removed object C and replaced with C to make lib pure.
Change-Id: Ie0f49f7e2f4577195dadfa0fdec70212af7c698a
Diffstat (limited to 'solenv/bin')
-rwxr-xr-x | solenv/bin/native-code.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/solenv/bin/native-code.py b/solenv/bin/native-code.py index 21adb83ac769..886c70a9cbfd 100755 --- a/solenv/bin/native-code.py +++ b/solenv/bin/native-code.py @@ -446,7 +446,6 @@ print ("""/* #include <config_features.h> #include <osl/detail/component-mapping.h> -extern "C" { """) for entry in sorted(full_factory_map.keys()): @@ -520,6 +519,6 @@ print (""" return map; } -}""") +""") # vim:set shiftwidth=4 softtabstop=4 expandtab: |