1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-28 07:21:54 +03:00
samba-mirror/source4/heimdal_build/hcrypto-deps.pl
Jelmer Vernooij 061dfe14d9 r15278: Fix recreating symlink every time.
(This used to be commit 6f8382432f)
2007-10-10 14:05:01 -05:00

10 lines
171 B
Perl
Executable File

#!/usr/bin/perl
use strict;
foreach (@ARGV) {
my $old = $_;
my $new = $old; $new =~ s/des/des\/hcrypto/g;
my $dir = $old;
print "$new: heimdal/lib/des/hcrypto\n";
}