summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJarielle Catbagan <jcatbagan93@gmail.com>2015-06-19 14:32:47 -0700
committerEd Sutter <edsutterjr@gmail.com>2015-06-27 08:42:47 -0400
commitd871a74be75e0fdebcf0574c696420971769718e (patch)
treef3ae0a71b5c763eea4628c75d064159287b9711d
parentUpdated BBB port makefile (diff)
downloadumon-d871a74be75e0fdebcf0574c696420971769718e.tar.bz2
Fixed BASE variable in common.make
The BASE variable was changed from $(TOPDIR)/target -> $(TOPDIR) as the "target" directory's contents were moved to the $(TOPDIR).
-rw-r--r--main/make/common.make2
1 files changed, 1 insertions, 1 deletions
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