diff options
author | Brian Callahan <bcallah@openbsd.org> | 2021-04-29 15:51:27 -0400 |
---|---|---|
committer | Brian Callahan <bcallah@openbsd.org> | 2021-04-29 15:54:11 -0400 |
commit | bd347aab82173186c10b681d7d99399c15d9db18 (patch) | |
tree | ca358226c17387b4259def1a4342efaf9fe91919 /src/fpm_command_line.f90 | |
parent | a9adf2b3ed09d0769f1095ddf7c2c06f71f10161 (diff) | |
download | fpm-bd347aab82173186c10b681d7d99399c15d9db18.tar.gz fpm-bd347aab82173186c10b681d7d99399c15d9db18.zip |
Identify OpenBSD
Diffstat (limited to 'src/fpm_command_line.f90')
-rw-r--r-- | src/fpm_command_line.f90 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/fpm_command_line.f90 b/src/fpm_command_line.f90 index 9e9a572..2a2ecf5 100644 --- a/src/fpm_command_line.f90 +++ b/src/fpm_command_line.f90 @@ -25,7 +25,7 @@ module fpm_command_line use fpm_environment, only : get_os_type, get_env, & OS_UNKNOWN, OS_LINUX, OS_MACOS, OS_WINDOWS, & - OS_CYGWIN, OS_SOLARIS, OS_FREEBSD + OS_CYGWIN, OS_SOLARIS, OS_FREEBSD, OS_OPENBSD use M_CLI2, only : set_args, lget, sget, unnamed, remaining, specified use fpm_strings, only : lower, split, fnv_1a use fpm_filesystem, only : basename, canon_path, to_fortran_name @@ -129,6 +129,7 @@ contains case (OS_CYGWIN); os_type = "OS Type: Cygwin" case (OS_SOLARIS); os_type = "OS Type: Solaris" case (OS_FREEBSD); os_type = "OS Type: FreeBSD" + case (OS_OPENBSD); os_type = "OS Type: OpenBSD" case (OS_UNKNOWN); os_type = "OS Type: Unknown" case default ; os_type = "OS Type: UNKNOWN" end select |