diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2020-01-28 10:44:16 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-01-28 13:14:46 +0100 |
commit | d68824bd926954f1d2201904d6976a55e9fd8564 (patch) | |
tree | 47825a97f9a4ff822d5feb1fcf39c8946344c521 | |
parent | 9f277b2616512299ec20de0209c272527f26386b (diff) |
Remove misleading comment
...that had not been adapted when the corresponding #ifdef had been changed in
2087484c65a3d5e75a9e8ad116d11a4e13366219 "use consistent #define checks for the
Windows platform"
Change-Id: I5afec630311201269f60b50271f31a36edaf2333
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87593
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
-rw-r--r-- | odk/CustomTarget_allheaders.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/odk/CustomTarget_allheaders.mk b/odk/CustomTarget_allheaders.mk index b432317c4a72..3c28f0cfcfe1 100644 --- a/odk/CustomTarget_allheaders.mk +++ b/odk/CustomTarget_allheaders.mk @@ -42,7 +42,7 @@ ifeq ($(HAVE_GNUMAKE_FILE_FUNC),) $(foreach file,$(shell cat $^),\ $(if $(findstring /win32/,$(file)),&& printf '#ifdef _WIN32\n' >> $@) \ && printf '#include <%s>\n' $(subst $(INSTDIR)/$(SDKDIRNAME)/include/,,$(file)) >> $@ \ - $(if $(findstring /win32/,$(file)),&& printf '#endif // WNT\n' >> $@) \ + $(if $(findstring /win32/,$(file)),&& printf '#endif\n' >> $@) \ ) else $(file >$@,\ |