1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-14 19:24:43 +03:00

r15263: Remove another use of patsubst (should make tru64 happy)

(This used to be commit 559ae256e133777e77bfe7a683f1c441cd6007b0)
This commit is contained in:
Jelmer Vernooij 2006-04-26 00:46:10 +00:00 committed by Gerald (Jerry) Carter
parent b995f263f8
commit 3c68259e3a
3 changed files with 11 additions and 1 deletions

View File

@ -1,3 +1,4 @@
- let the build system implement some make functions($(patsubst),$(wildcard),...)
- make --enable-dso the default
- fix module loading for selftest during non-developer builds
- clearer distinction between dcerpc and ndr. seperate interface tables?

View File

@ -455,7 +455,7 @@ include perl_path_wrapper.sh et_deps.pl heimdal/lib/krb5/krb5_err.et|
heimdal/lib/roken/vis.h: heimdal/lib/roken/vis.hin
heimdal/lib/roken/err.h: heimdal/lib/roken/err.hin
$(patsubst heimdal/lib/des/%.h,heimdal/lib/des/hcrypto/%.h,$(wildcard heimdal/lib/des/*.h)): heimdal/lib/des/hcrypto
include hcrypto-deps.pl heimdal/lib/des/*.h|
heimdal/lib/des/hcrypto:
rm -f $@; ln -s ./../des $@

View File

@ -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";
}