mirror of
https://github.com/samba-team/samba.git
synced 2025-01-17 02:05:21 +03:00
5a6288f458
lookup plugin, the new PAC validation code as well as Heimdal's SPNEGO implementation. Andrew Bartlett (This used to be commit 05421f45ed7811697ea491e26c9d991a7faa1a64)
14 lines
432 B
Perl
Executable File
14 lines
432 B
Perl
Executable File
#!/usr/bin/perl
|
|
|
|
use File::Basename;
|
|
|
|
my $file = shift;
|
|
my $dirname = shift;
|
|
my $basename = basename($file);
|
|
|
|
my $header = "$dirname/$basename"; $header =~ s/\.et$/.h/;
|
|
my $source = "$dirname/$basename"; $source =~ s/\.et$/.c/;
|
|
print "$header $source: $file bin/compile_et\n";
|
|
print "\t\@echo \"Compiling error table $file\"\n";
|
|
print "\t\@startdir=`pwd` && cd $dirname && " . '$$startdir/bin/compile_et $$startdir/' . "$file\n\n";
|