diff options
author | Alexis Ballier <aballier@gentoo.org> | 2016-02-28 14:47:29 +0100 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2016-02-28 14:47:29 +0100 |
commit | b363df64dffcea268d5f917899a75eef8ecc4b6f (patch) | |
tree | 01ee638abc943c3a0a71e966f378b12159ed822b /eclass | |
parent | ros-meta/gazebo_ros_pkgs: Bump to 2.5.2. (diff) | |
download | gentoo-b363df64dffcea268d5f917899a75eef8ecc4b6f.tar.gz gentoo-b363df64dffcea268d5f917899a75eef8ecc4b6f.tar.bz2 gentoo-b363df64dffcea268d5f917899a75eef8ecc4b6f.zip |
eclass/portability.eclass: Make get_bmake return "bmake" on linux instead of "pmake".
pmake was the debian port of bmake. bmake works fine, pmake cannot be used to cross-build freebsd-lib 10 for example. pmake has been deprecated and replaced by bmake in debian since jessie (current stable), pmake is only present in wheezy (oldstable)
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/portability.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/portability.eclass b/eclass/portability.eclass index 2e4e01d51432..02c7c738f41e 100644 --- a/eclass/portability.eclass +++ b/eclass/portability.eclass @@ -98,7 +98,7 @@ dlopen_lib() { # @USAGE: # @RETURN: system version of make # @DESCRIPTION: -# Gets the name of the BSD-ish make command (pmake from NetBSD) +# Gets the name of the BSD-ish make command (bmake from NetBSD) # # This will return make (provided by system packages) for BSD userlands, # or bsdmake for Darwin userlands and pmake for the rest of userlands, @@ -112,7 +112,7 @@ get_bmake() { elif [[ ${USERLAND} == "Darwin" ]]; then echo bsdmake else - echo pmake + echo bmake fi } |