Commit 1575184c724024551f77f96f287879a5e7d6b06e

Authored by Jacob Vosmaer
1 parent a273a299

Use the MySQL WITHOUT_SERVER configuration option

Showing 1 changed file with 3 additions and 2 deletions   Show diff stats
config/software/mysql-client.rb
... ... @@ -60,8 +60,9 @@ build do
60 60 "-DZLIB_INCLUDE_DIR:PATH=#{install_dir}/embedded/include",
61 61 "-DZLIB_LIBRARY:FILEPATH=#{install_dir}/embedded/lib/libz.so",
62 62 "-DCRYPTO_LIBRARY:FILEPATH=#{install_dir}/embedded/lib/libcrypto.so",
  63 + "-DWITHOUT_SERVER=YES",
63 64 ".",
64 65 ].join(" "), :env => env
65   - command "make -j #{max_build_jobs}", :env => env, :cwd => "#{project_dir}/libmysql"
66   - command "make -j #{max_build_jobs}", :env => env, :cwd => "#{project_dir}/client"
  66 + command "make -j #{max_build_jobs}", :env => env
  67 + command "make install", :env => env
67 68 end
... ...