[PATCH 05/19] Move the MSGOBJS variable definition a little further down

Thiago Macieira thiago at macieira.org
Mon Apr 22 23:48:11 PDT 2013


Move it closer to the actual rules. This is not a variable that we'll
usually modify.

Signed-off-by: Thiago Macieira <thiago at macieira.org>
---
 Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile
index 37dc343..c5f72cc 100644
--- a/Makefile
+++ b/Makefile
@@ -184,8 +184,6 @@ LIBS = $(LIBQT) $(LIBXML2) $(LIBXSLT) $(LIBSQLITE3) $(LIBGTK) $(LIBGCONF2) $(LIB
 	$(EXTRALIBS) $(LIBZIP) -lpthread -lm $(LIBOSMGPSMAP) $(LIBSOUP) $(LIBWINSOCK)
 
 MSGLANGS=$(notdir $(wildcard po/*.po))
-MSGOBJS=$(addprefix share/locale/,$(MSGLANGS:.po=.UTF-8/LC_MESSAGES/subsurface.mo))
-
 
 # Add files to the following variables if the auto-detection based on the
 # filename fails
@@ -193,6 +191,8 @@ OBJS_NEEDING_MOC =
 OBJS_NEEDING_UIC =
 HEADERS_NEEDING_MOC =
 
+MSGOBJS=$(addprefix share/locale/,$(MSGLANGS:.po=.UTF-8/LC_MESSAGES/subsurface.mo))
+
 # Add the objects for the header files which define QObject subclasses
 HEADERS_NEEDING_MOC += $(shell grep -l -s 'Q_OBJECT' $(OBJS:.o=.h))
 MOC_OBJS = $(HEADERS_NEEDING_MOC:.h=.moc.o)
-- 
1.7.11.7



More information about the subsurface mailing list