From 348f828214d9660a69ba0730ff1c96b61a3ab7ca Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Wed, 4 Jun 2014 13:45:34 +0900 Subject: ovs-sandbox: Use the correct make On some platforms including NetBSD, GNU make is usually installed as "gmake". Signed-off-by: YAMAMOTO Takashi Acked-by: Ben Pfaff --- tutorial/automake.mk | 2 +- tutorial/ovs-sandbox | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'tutorial') 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 -- cgit v1.2.1