Fix the install check

This commit is contained in:
Eelco Dolstra 2012-05-11 23:30:47 -04:00
parent 587b408210
commit dfc6a43b72

View file

@ -80,11 +80,7 @@ let
--enable-gc --enable-gc
''; '';
installCheckPhase = '' doInstallCheck = true;
make installcheck
'';
postPhases = [ "installCheckPhase" ];
}; };
@ -109,11 +105,7 @@ let
dontInstall = false; dontInstall = false;
installCheckPhase = '' doInstallCheck = true;
make installcheck
'';
postPhases = [ "installCheckPhase" ];
lcovFilter = [ "*/boost/*" "*-tab.*" ]; lcovFilter = [ "*/boost/*" "*-tab.*" ];
@ -195,10 +187,7 @@ let
meta.schedulingPriority = prio; meta.schedulingPriority = prio;
configureFlags = "--sysconfdir=/etc"; configureFlags = "--sysconfdir=/etc";
debRequires = [ "curl" "libdbd-sqlite3-perl" "libsqlite3-0" "libbz2-1.0" ]; debRequires = [ "curl" "libdbd-sqlite3-perl" "libsqlite3-0" "libbz2-1.0" ];
installCheckPhase = '' doInstallCheck = true;
make installcheck
'';
postPhases = [ "installCheckPhase" ];
}; };