summaryrefslogtreecommitdiff
path: root/tutorial
diff options
context:
space:
mode:
authorYAMAMOTO Takashi <yamamoto@valinux.co.jp>2014-06-04 13:45:34 +0900
committerYAMAMOTO Takashi <yamamoto@valinux.co.jp>2014-06-05 02:06:17 +0900
commit348f828214d9660a69ba0730ff1c96b61a3ab7ca (patch)
tree8adcdc80d55d197258305416dc3e9be150168358 /tutorial
parent29d204effc1b5301c0312b45744d1730706024a5 (diff)
downloadopenvswitch-348f828214d9660a69ba0730ff1c96b61a3ab7ca.tar.gz
ovs-sandbox: Use the correct make
On some platforms including NetBSD, GNU make is usually installed as "gmake". Signed-off-by: YAMAMOTO Takashi <yamamoto@valinux.co.jp> Acked-by: Ben Pfaff <blp@nicira.com>
Diffstat (limited to 'tutorial')
-rw-r--r--tutorial/automake.mk2
-rwxr-xr-xtutorial/ovs-sandbox2
2 files changed, 2 insertions, 2 deletions
diff --git a/tutorial/automake.mk b/tutorial/automake.mk
index d88d5b45e..82ad66d73 100644
--- a/tutorial/automake.mk
+++ b/tutorial/automake.mk
@@ -9,4 +9,4 @@ EXTRA_DIST += \
tutorial/t-stage4
sandbox: all
- cd $(srcdir)/tutorial && ./ovs-sandbox -b $(abs_builddir)
+ cd $(srcdir)/tutorial && MAKE=$(MAKE) ./ovs-sandbox -b $(abs_builddir)
diff --git a/tutorial/ovs-sandbox b/tutorial/ovs-sandbox
index db980d241..21066d1e3 100755
--- a/tutorial/ovs-sandbox
+++ b/tutorial/ovs-sandbox
@@ -190,7 +190,7 @@ OVS_SYSCONFDIR=$sandbox; export OVS_SYSCONFDIR
if $built; then
# Easy access to OVS manpages.
- (cd "$builddir" && make install-man mandir="$sandbox"/man)
+ (cd "$builddir" && ${MAKE} install-man mandir="$sandbox"/man)
MANPATH=$sandbox/man:; export MANPATH
fi