1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-25 06:31:14 +02:00

Install bsdiff and bspatch in $(libexecdir)/nix

This commit is contained in:
Eelco Dolstra 2013-12-02 20:21:31 +00:00
parent 0202ce6b94
commit f3cf0436b5
3 changed files with 4 additions and 4 deletions

View file

@ -225,7 +225,7 @@ sub generatePatches {
}
my $time1 = time();
my $res = system("ulimit -t $timeLimit; $Nix::Config::libexecDir/bsdiff $tmpDir/A $tmpDir/B $tmpDir/DIFF");
my $res = system("ulimit -t $timeLimit; $Nix::Config::libexecDir/nix/bsdiff $tmpDir/A $tmpDir/B $tmpDir/DIFF");
my $time2 = time();
if ($res) {
warn "binary diff computation aborted after ", $time2 - $time1, " seconds\n";