From c803933c46c9a9986cd73701066c08dfefd0dcfc Mon Sep 17 00:00:00 2001 From: Rohan McGovern Date: Wed, 18 Jan 2012 11:17:50 +1000 Subject: [PATCH] Use relative instead of absolute SUBDIRS, as usual. There doesn't seem to be any reason for using the full path to subdirs here. Using the full path is unconventional, and it causes the makefile targets to be named after the full path to the subdir, which is unnecessarily long and also unpredictable. Change-Id: I88361b50a4814b5b063f6d84bc68ff6955af1960 Reviewed-by: Michael Goddard --- src/src.pro | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/src.pro b/src/src.pro index aea0f58..df94ec6 100644 --- a/src/src.pro +++ b/src/src.pro @@ -3,16 +3,16 @@ TEMPLATE = subdirs SUBDIRS += multimedia # Everything else depends on multimedia -src_qgsttools.subdir = $$IN_PWD/gsttools +src_qgsttools.subdir = gsttools src_qgsttools.depends = multimedia -src_qtmmwidgets.subdir = $$IN_PWD/multimediawidgets +src_qtmmwidgets.subdir = multimediawidgets src_qtmmwidgets.depends = multimedia -src_plugins.subdir = $$IN_PWD/plugins +src_plugins.subdir = plugins src_plugins.depends = multimedia -src_imports.subdir = $$IN_PWD/imports +src_imports.subdir = imports src_imports.depends = multimedia SUBDIRS += src_imports -- 2.7.4