mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 14:19:58 +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
|
||||
];
|
||||
|
||||
# Prevent warnings from `strip'.
|
||||
postInstall = "chmod -R u+w $out";
|
||||
postInstall =
|
||||
''
|
||||
# Prevent warnings from `strip'.
|
||||
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
|
||||
# (e.g. "database is locked(5) at dbdimp.c line 402 at t/07busy.t").
|
||||
|
Loading…
Reference in New Issue
Block a user