[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
317/376: Fix another operator precedence issue found by Perl 5.20
From: |
Ludovic Courtès |
Subject: |
317/376: Fix another operator precedence issue found by Perl 5.20 |
Date: |
Wed, 28 Jan 2015 22:05:52 +0000 |
civodul pushed a commit to tag 1.8
in repository guix.
commit bf78a27ac995edcd34d821b9ef9061b475f51b67
Author: Eelco Dolstra <address@hidden>
Date: Fri Dec 5 19:25:13 2014 +0100
Fix another operator precedence issue found by Perl 5.20
---
scripts/nix-build.in | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/scripts/nix-build.in b/scripts/nix-build.in
index f8cf318..9127d90 100755
--- a/scripts/nix-build.in
+++ b/scripts/nix-build.in
@@ -276,7 +276,7 @@ foreach my $expr (@exprs) {
while (<OUTPATHS>) {chomp; push @outPaths, $_;}
if (!close OUTPATHS) {
die "nix-store killed by signal " . ($? & 127) . "\n" if ($? & 127);
- exit $? >> 8 || 1;
+ exit ($? >> 8 || 1);
}
next if $dryRun;
- 308/376: Build derivations in a more predictable order, (continued)
- 308/376: Build derivations in a more predictable order, Ludovic Courtès, 2015/01/28
- 307/376: Don't create unnecessary substitution goals for derivations, Ludovic Courtès, 2015/01/28
- 309/376: More build-cache-failures -> build-cache-failure, Ludovic Courtès, 2015/01/28
- 310/376: forceString(): Accept pos argument, Ludovic Courtès, 2015/01/28
- 311/376: Add a primop for regular expression pattern matching, Ludovic Courtès, 2015/01/28
- 312/376: Rely on XML catalogs to find the DocBook schemas and stylesheets, Ludovic Courtès, 2015/01/28
- 313/376: Intro: Mention binary caches, Ludovic Courtès, 2015/01/28
- 303/376: Manual: Bump date, Ludovic Courtès, 2015/01/28
- 315/376: Make all ExternalValueBase functions const, Ludovic Courtès, 2015/01/28
- 318/376: Shut up a warning, Ludovic Courtès, 2015/01/28
- 317/376: Fix another operator precedence issue found by Perl 5.20,
Ludovic Courtès <=
- 322/376: Remove Fedora 18, 19 builds, Ludovic Courtès, 2015/01/28
- 319/376: Use posix_spawn to run the pager, Ludovic Courtès, 2015/01/28
- 321/376: Remove some platforms with too-old compilers, Ludovic Courtès, 2015/01/28
- 323/376: Explicitly include required C headers, Ludovic Courtès, 2015/01/28
- 316/376: Merge pull request #401 from shlevy/external-value, Ludovic Courtès, 2015/01/28
- 314/376: Allow external code using libnixexpr to add types, Ludovic Courtès, 2015/01/28
- 328/376: Provide some fallback defaults for the CA bundle, Ludovic Courtès, 2015/01/28
- 329/376: Add option to disable binary cache certificate checking, Ludovic Courtès, 2015/01/28
- 330/376: Doh, Ludovic Courtès, 2015/01/28
- 327/376: Use https://cache.nixos.org instead of http://cache.nixos.org, Ludovic Courtès, 2015/01/28