diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2013-12-02T20·21+0000 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2013-12-02T20·21+0000 |
commit | f3cf0436b520918e061bf91efef3bb19b99bf726 (patch) | |
tree | 2fcc110345e203fdac52f949a8decc7d3cb2af36 /perl | |
parent | 0202ce6b94f287f70a6723473c73a4c7f135dae4 (diff) |
Install bsdiff and bspatch in $(libexecdir)/nix
Diffstat (limited to 'perl')
-rw-r--r-- | perl/lib/Nix/GeneratePatches.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl/lib/Nix/GeneratePatches.pm b/perl/lib/Nix/GeneratePatches.pm index f9d83c49c856..612c8a3a15ba 100644 --- a/perl/lib/Nix/GeneratePatches.pm +++ b/perl/lib/Nix/GeneratePatches.pm @@ -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"; |