2
0
mirror of https://github.com/openvswitch/ovs synced 2025-08-22 01:51:26 +00:00

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>
This commit is contained in:
YAMAMOTO Takashi 2014-06-04 13:45:34 +09:00
parent 29d204effc
commit 348f828214
2 changed files with 2 additions and 2 deletions

View File

@ -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)

View File

@ -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