mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 12:53:59 +03:00
DBD::SQLite: Don't install a copy of the SQLite sources
This saves almost 5 MB.
This commit is contained in:
parent
b8be9b54f3
commit
911e9f3f43
@ -17,8 +17,14 @@ buildPerlPackage rec {
|
|||||||
./external-sqlite.patch
|
./external-sqlite.patch
|
||||||
];
|
];
|
||||||
|
|
||||||
|
postInstall =
|
||||||
|
''
|
||||||
# Prevent warnings from `strip'.
|
# Prevent warnings from `strip'.
|
||||||
postInstall = "chmod -R u+w $out";
|
chmod -R u+w $out
|
||||||
|
|
||||||
|
# Get rid of a pointless copy of the SQLite sources.
|
||||||
|
rm -rf $out/lib/perl5/site_perl/*/*/auto/share
|
||||||
|
'';
|
||||||
|
|
||||||
# Disabled because the tests can randomly fail due to timeouts
|
# Disabled because the tests can randomly fail due to timeouts
|
||||||
# (e.g. "database is locked(5) at dbdimp.c line 402 at t/07busy.t").
|
# (e.g. "database is locked(5) at dbdimp.c line 402 at t/07busy.t").
|
||||||
|
Loading…
Reference in New Issue
Block a user