diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2018-05-03 23:58:00 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2018-05-03 23:58:00 +0300 |
commit | 7215c363dd4cde92257096654da0c01e22005c45 (patch) | |
tree | cc93d3a02a5441bd996734d4552c177629deee67 | |
parent | 741a1d2c4d9c92e1b85e4b993345dec90146b34d (diff) |
Adjust to new scope syntax
-rw-r--r-- | build/export.build | 2 | ||||
-rw-r--r-- | mysql/buildfile | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/build/export.build b/build/export.build index 8f8df42..29f718e 100644 --- a/build/export.build +++ b/build/export.build @@ -2,7 +2,7 @@ # copyright : Copyright (c) 2016-2017 Code Synthesis Ltd # license : LGPLv2.1; see accompanying COPYING file -$out_root/: +$out_root/ { include mysql/ } diff --git a/mysql/buildfile b/mysql/buildfile index d41bba8..3352b76 100644 --- a/mysql/buildfile +++ b/mysql/buildfile @@ -181,9 +181,9 @@ zlib_poptions = "-I$src_base/zlib" # Note that the bundled win-iconv header is included as a quoted (relative) # path, so no need for -I option. # - zlib/: c.poptions =+ $zlib_poptions - plugins/: c.poptions =+ $mariadb_poptions -libmariadb/: c.poptions =+ $mariadb_poptions $zlib_poptions + zlib/ c.poptions =+ $zlib_poptions + plugins/ c.poptions =+ $mariadb_poptions +libmariadb/ c.poptions =+ $mariadb_poptions $zlib_poptions if ($c.class == 'msvc') { |