diff options
Diffstat (limited to 'source4/heimdal_build')
-rw-r--r-- | source4/heimdal_build/config.mk | 2 | ||||
-rwxr-xr-x | source4/heimdal_build/hcrypto-deps.pl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/source4/heimdal_build/config.mk b/source4/heimdal_build/config.mk index cd15c442a4..8d1b6c5781 100644 --- a/source4/heimdal_build/config.mk +++ b/source4/heimdal_build/config.mk @@ -459,7 +459,7 @@ heimdal/lib/roken/err.h: heimdal/lib/roken/err.hin include perl_path_wrapper.sh hcrypto-deps.pl heimdal/lib/des/*.h| heimdal/lib/des/hcrypto: - rm -f $@; ln -s ./../des $@ + @rm -f $@; ln -s ./../des $@ clean:: @-rm -f heimdal/lib/roken/vis.h heimdal/lib/roken/err.h diff --git a/source4/heimdal_build/hcrypto-deps.pl b/source4/heimdal_build/hcrypto-deps.pl index 89054bf1fa..61dd832b6a 100755 --- a/source4/heimdal_build/hcrypto-deps.pl +++ b/source4/heimdal_build/hcrypto-deps.pl @@ -5,5 +5,5 @@ foreach (@ARGV) { my $old = $_; my $new = $old; $new =~ s/des/des\/hcrypto/g; my $dir = $old; - print "$new: $old heimdal/lib/des/hcrypto\n"; + print "$new: heimdal/lib/des/hcrypto\n"; } |