diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2022-04-12 14:09:20 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2022-04-12 16:45:24 +0200 |
commit | 48e277ad1d3fc0a8f7cb3e3cf356e15f6102a17f (patch) | |
tree | 129d706bf9f7e73532e51dbf29aa9b2863099c34 /odk/docs | |
parent | 2b44f9490853c9de5a0e92c41fdc1279b6c91e06 (diff) |
Fix unoidl-read invocation
...that had inadvertently been missing from
bb64cd2884beb03a2d578ada10abdb3e0df22778 "Add unoidl-read to the SDK"
Change-Id: I4003e1dede9c8d6caf036534f4c3d0e59a24da14
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132903
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'odk/docs')
-rw-r--r-- | odk/docs/idl/wikilinks.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/odk/docs/idl/wikilinks.py b/odk/docs/idl/wikilinks.py index 732c0e672c3a..742d874eafa7 100644 --- a/odk/docs/idl/wikilinks.py +++ b/odk/docs/idl/wikilinks.py @@ -15,7 +15,7 @@ # Usage: # # In core, generate a file letting us know what kinds of entities to declare: -# cat <(make -s cmd cmd='LD_LIBRARY_PATH=$(INSTDIR)/program $(INSTDIR)/sdk/bin/unoidl-read --summary $(INSTDIR)/program/types.rdb') <(make -s cmd cmd='LD_LIBRARY_PATH=$(INSTDIR)/program $(INSTDIR)/sdk/bin/unoidl-read --summary $(INSTDIR)/program/types.rdb $(INSTDIR)/program/types/offapi.rdb') | LC_ALL=C sort | LC_ALL=C uniq > /tmp/kinds +# cat <(make -s cmd cmd='$(INSTDIR)/sdk/bin/unoidl-read --summary $(INSTDIR)/program/types.rdb') <(make -s cmd cmd='$(INSTDIR)/sdk/bin/unoidl-read --summary $(INSTDIR)/program/types.rdb $(INSTDIR)/program/types/offapi.rdb') | LC_ALL=C sort | LC_ALL=C uniq > /tmp/kinds # # Run the script while feeding it the chapter references and output the fake IDL: # python wikilinks.py < idl_chapter_refs.txt > generated_idl_chapter_refs.idl |