[PATCH 8/16] Fixed BASE variable in common.make

Jarielle Catbagan jcatbagan93 at gmail.com
Wed Jun 17 18:06:19 UTC 2015


$(TOPDIR)/target -> $(TOPDIR) as the 'target' directory's contents
were moved to the same level as the directory itself.  The BASE
variable in /main/make/common.make was updated to reflect this change.

---
 main/make/common.make | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/main/make/common.make b/main/make/common.make
index 161ae77..b12780d 100644
--- a/main/make/common.make
+++ b/main/make/common.make
@@ -8,7 +8,7 @@
 #
 # Various relative directories used to build the monitor:
 #
-BASE = $(TOPDIR)/target
+BASE = $(TOPDIR)
 CPUDIR = $(BASE)/cpu/$(CPUTYPE)
 ZLIBDIR = $(BASE)/zlib
 GLIBDIR = $(BASE)/glib
-- 
2.3.3


More information about the umon-devel mailing list