diff options
author | Attila Molnar <attilamolnar@hush.com> | 2017-07-09 21:10:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-09 21:10:27 +0200 |
commit | d99cd3ece0b2596814e2c13630ea95837053ce55 (patch) | |
tree | f14303de1b31422c2df36345d7fce41faec61f21 | |
parent | 249489c813b1347a0fa0fe24a91f7af4c5229912 (diff) | |
parent | e413076207714073fbd148e68b09abc4b61eab5e (diff) |
Merge pull request #1333 from SaberUK/insp20+openbsd
[2.0] Tell OpenBSD users that they need to use a different make command.
-rwxr-xr-x | configure | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -733,6 +733,14 @@ to a newer 3.x or 4.x (or whatever is available currently) version. FOO2 } +if ($^O eq 'openbsd') { + print <<__OPENBSD_WARNING__; +\e[1;32mWARNING!\e[0m OpenBSD 6.5 changed Make to no longer look for BSDmakefile when +searching for the makefile. If the version of OpenBSD you are using is 6.5 or +newer then you will need to run '\e[1;32mmake -f BSDmakefile\e[0m' or '\e[1;32mgmake\e[0m' instead. +__OPENBSD_WARNING__ +} + ################################################################################ # HELPER FUNCTIONS # ################################################################################ |