Skip to content

Commit

Permalink
ovs-sandbox: Use the correct make
Browse files Browse the repository at this point in the history
On some platforms including NetBSD,
GNU make is usually installed as "gmake".

Signed-off-by: YAMAMOTO Takashi <[email protected]>
Acked-by: Ben Pfaff <[email protected]>
  • Loading branch information
yamt committed Jun 4, 2014
1 parent 29d204e commit 348f828
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tutorial/automake.mk
Original file line number Diff line number Diff line change
Expand Up @@ -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)
2 changes: 1 addition & 1 deletion tutorial/ovs-sandbox
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 348f828

Please sign in to comment.