sqliteodbc: fix library location

Commit d7d3c8fd82 (sqliteodbc: update to
0.995, add more metadata) mistakenly moved libraries from $out/lib to
$out (or rather stopped moving them from $out to $out/lib).

Move them back to $out/lib where they're expected to be and referred to
by the /etc/odbcinst.ini snippet.
This commit is contained in:
Bjørn Forsman 2014-02-03 17:58:23 +01:00
parent 34484e65f3
commit 700c1323b8

View File

@ -91,8 +91,11 @@ args : with args;
configureFlags = "--with-sqlite3=${sqlite} --with-odbc=${unixODBC}";
# move libraries to $out/lib where they're expected to be
postInstall = ''
mkdir -p $out/lib
mkdir -p "$out/lib"
mv "$out"/*.so "$out/lib"
mv "$out"/*.la "$out/lib"
'';
meta = {