summaryrefslogtreecommitdiff
path: root/source4/heimdal_build/hcrypto-deps.pl
diff options
context:
space:
mode:
Diffstat (limited to 'source4/heimdal_build/hcrypto-deps.pl')
-rwxr-xr-xsource4/heimdal_build/hcrypto-deps.pl9
1 files changed, 9 insertions, 0 deletions
diff --git a/source4/heimdal_build/hcrypto-deps.pl b/source4/heimdal_build/hcrypto-deps.pl
new file mode 100755
index 0000000000..89054bf1fa
--- /dev/null
+++ b/source4/heimdal_build/hcrypto-deps.pl
@@ -0,0 +1,9 @@
+#!/usr/bin/perl
+use strict;
+
+foreach (@ARGV) {
+ my $old = $_;
+ my $new = $old; $new =~ s/des/des\/hcrypto/g;
+ my $dir = $old;
+ print "$new: $old heimdal/lib/des/hcrypto\n";
+}