From cc7d17ffb3003564295d6a07bc6dbca6c73dbbb8 Mon Sep 17 00:00:00 2001 From: Edward Welbourne Date: Mon, 13 Feb 2017 15:15:33 +0100 Subject: [PATCH] Fix reference to non-existent file in qmake/Makefile.unix I found no $(QMKGENSRC)/mac/xmloutput.cpp; but skipping the mac/ in its name reveals a perfectly good file, that might even be relevant. It's also the file named in a rule further down the file. Change-Id: I72b399f9c3c222fc6beed29f2007fe55ba5b8412 Reviewed-by: Oswald Buddenhagen --- qmake/Makefile.unix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qmake/Makefile.unix b/qmake/Makefile.unix index 53113641f8..17282bd20b 100644 --- a/qmake/Makefile.unix +++ b/qmake/Makefile.unix @@ -36,7 +36,7 @@ DEPEND_SRC = \ $(QMKGENSRC)/win32/registry.cpp \ $(QMKGENSRC)/win32/winmakefile.cpp \ $(QMKGENSRC)/win32/mingw_make.cpp $(QMKGENSRC)/win32/msvc_nmake.cpp \ - $(QMKGENSRC)/mac/xmloutput.cpp \ + $(QMKGENSRC)/xmloutput.cpp \ $(QMKGENSRC)/win32/msvc_vcproj.cpp $(QMKGENSRC)/win32/msvc_vcxproj.cpp \ $(QMKGENSRC)/win32/msvc_objectmodel.cpp $(QMKGENSRC)/win32/msbuild_objectmodel.cpp \ $(SOURCE_PATH)/src/corelib/codecs/qtextcodec.cpp $(SOURCE_PATH)/src/corelib/codecs/qutfcodec.cpp \