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 /mysql/buildfile | |
parent | 741a1d2c4d9c92e1b85e4b993345dec90146b34d (diff) |
Adjust to new scope syntax
Diffstat (limited to 'mysql/buildfile')
-rw-r--r-- | mysql/buildfile | 6 |
1 files changed, 3 insertions, 3 deletions
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') { |