diff options
author | Niels Janssen <njanssen@cs.uu.nl> | 2004-09-19T15·53+0000 |
---|---|---|
committer | Niels Janssen <njanssen@cs.uu.nl> | 2004-09-19T15·53+0000 |
commit | 995d08208eb52dfa42451733c4b20add2730de9f (patch) | |
tree | db0d971235ae6d55a29b18d557f04f9aa95ac4ab /corepkgs | |
parent | b357284a323b86b96828e38dcb2d86b67f172de5 (diff) |
* prevent collision on log directory
Diffstat (limited to 'corepkgs')
-rwxr-xr-x | corepkgs/buildenv/builder.pl.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/corepkgs/buildenv/builder.pl.in b/corepkgs/buildenv/builder.pl.in index 9a5fad912567..e53b383f19c8 100755 --- a/corepkgs/buildenv/builder.pl.in +++ b/corepkgs/buildenv/builder.pl.in @@ -24,7 +24,8 @@ sub createLinks { my $dstFile = "$dstDir/$baseName"; if ($srcFile =~ /\/propagated-build-inputs$/ || - $srcFile =~ /\/nix-support$/) + $srcFile =~ /\/nix-support$/ || + $srcFile =~ /\/log$/) { # Do noting. } |