diff options
author | Jan Holesovsky <kendy@suse.cz> | 2011-09-22 12:48:27 +0200 |
---|---|---|
committer | Jan Holesovsky <kendy@suse.cz> | 2011-09-22 12:49:10 +0200 |
commit | b0ddd564c178e0d61040d7b059dccc10e031532d (patch) | |
tree | a66e555a1ad1c9419311b9d62ac31373aec44efd /desktop/util | |
parent | 919ce6a9b83daebc0dc5b787ce748f6d6899d51f (diff) |
Fix manifest creation in the MinGW case (and hopefully not breaking native).
Diffstat (limited to 'desktop/util')
-rw-r--r-- | desktop/util/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/util/Makefile b/desktop/util/Makefile index 5e72a4109e9b..ff5c9d43042d 100644 --- a/desktop/util/Makefile +++ b/desktop/util/Makefile @@ -25,9 +25,9 @@ DESTDIR := $(WORKDIR)/CustomTarget/desktop/util -ifeq ($(COM),MSC) +ifeq ($(OS_FOR_BUILD)$(COM),WNTMSC) -$(DESTDIR)/linker.manifest : $(OUTDIR)/bin/soffice.bin +$(DESTDIR)/linker.manifest : $(OUTDIR)/bin/soffice_bin.exe mkdir -p $(DESTDIR) && mt.exe -inputresource:$< -out:$@ $(OUTDIR)/bin/soffice.bin.manifest : $(DESTDIR)/linker.manifest $(SRCDIR)/desktop/util/template.manifest |