diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2019-07-05 21:34:38 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2019-07-05 21:34:38 +0300 |
commit | a3bf80032f639fe079ce37514e84dc1a1d85c3ed (patch) | |
tree | 5e964bc5e1606a5a74a1b1c4ac37f308b7c2f8df | |
parent | 249dfaf5f843af440972a41952ff0a3b73c1614f (diff) |
Use __linux__ macro instead of __linux
-rw-r--r-- | bpkg/version.hxx.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bpkg/version.hxx.in b/bpkg/version.hxx.in index 7de858a..a87c3ba 100644 --- a/bpkg/version.hxx.in +++ b/bpkg/version.hxx.in @@ -60,7 +60,7 @@ $libodb_sqlite.check(LIBODB_SQLITE_VERSION, LIBODB_SQLITE_SNAPSHOT)$ # else # define BPKG_OS "Windows" # endif -#elif defined(__linux) +#elif defined(__linux__) # define BPKG_OS "GNU/Linux" #elif defined(__APPLE__) # define BPKG_OS "MacOS" |