diff options
Diffstat (limited to 'eclass/portability.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 } |