From 78ca3ba850d2ea0a22485dc8ae91b08df2797075 Mon Sep 17 00:00:00 2001 From: Marc Espie Date: Mon, 5 Sep 2011 07:46:12 +0000 Subject: [PATCH] fix --- infrastructure/bin/link-checksums | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/infrastructure/bin/link-checksums b/infrastructure/bin/link-checksums index b921061db3..deec319e1a 100644 --- a/infrastructure/bin/link-checksums +++ b/infrastructure/bin/link-checksums @@ -1,7 +1,7 @@ #! /usr/bin/perl # ex:ts=8 sw=4: -# $OpenBSD: link-checksums,v 1.3 2011/09/04 17:01:19 espie Exp $ +# $OpenBSD: link-checksums,v 1.4 2011/09/05 07:46:12 espie Exp $ # # Copyright (c) 2011 Marc Espie # @@ -94,7 +94,7 @@ find(sub { my $ci = shift @list; chomp $result; if ($result =~ m/^(..)/) { - my $target = "by_cipher/$ci/$1/$result"; + my $target = "$distdir/by_cipher/$ci/$1/$result"; File::Path::make_path($target); next if -f "$target/$_"; link $_, "$target/$_" or die "link: $!";