projects
/
dragonfly.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
4166d98
)
Redo last commit. Do not require that SRCDIR be specified. Set it
author
Matthew Dillon <dillon@apollo.backplane.com>
Fri, 3 Apr 2009 18:00:39 +0000 (11:00 -0700)
committer
Matthew Dillon <dillon@apollo.backplane.com>
Fri, 3 Apr 2009 18:00:39 +0000 (11:00 -0700)
to ${.CURDIR}/../.. by default (originally it was hardwired to /usr/src).
test/amd64/Makefile
patch
|
blob
|
blame
|
history
diff --git
a/test/amd64/Makefile
b/test/amd64/Makefile
index
2c1a61f
..
13551fa
100644
(file)
--- a/
test/amd64/Makefile
+++ b/
test/amd64/Makefile
@@
-5,7
+5,7
@@
#
# require it to be specified
-#SRCDIR ?= /usr/src
+SRCDIR ?= ${.CURDIR}/../..
QEMU ?= qemu-0.10.1
ROOTSIZE ?= 512M
@@
-193,9
+193,6
@@
checkq:
.if !defined(QEMUDIR)
@(echo "must specify QEMUDIR=target or as an environment variable"; exit 1)
.endif
-.if !defined(SRCDIR)
- @(echo "must specify SRCDIR=target (e.g. /usr/src) or as an environment variable"; exit 1)
-.endif
.if exists(${QEMUDIR})
@echo "${QEMUDIR} found"
.else