mirror of
https://github.com/samba-team/samba.git
synced 2025-03-08 04:58:40 +03:00
Use workaround for $(abspath)
(This used to be commit 21b4d017a2cccdaa6ab4ed32409f19c612293fd0)
This commit is contained in:
parent
6ba3cffb48
commit
18ba7d7679
@ -106,3 +106,6 @@ uninstallplugins::
|
||||
@-rm $$(DESTDIR)$$(modulesdir)/$(1)/$(2)
|
||||
|
||||
endef
|
||||
|
||||
# abspath for older makes
|
||||
abspath := $(shell cd $(1); pwd)
|
||||
|
@ -31,7 +31,7 @@ my $header = "$dirname/$prefix.h";
|
||||
|
||||
print "$header: \$(heimdalsrcdir)/$file \$(ASN1C)\n";
|
||||
print "\t\@echo \"Compiling ASN1 file \$(heimdalsrcdir)/$file\"\n";
|
||||
print "\t\@\$(heimdalbuildsrcdir)/asn1_compile_wrapper.sh \$(builddir) $dirname \$(ASN1C) \$(abspath \$(heimdalsrcdir)/$file) $prefix $options\n\n";
|
||||
print "\t\@\$(heimdalbuildsrcdir)/asn1_compile_wrapper.sh \$(builddir) $dirname \$(ASN1C) \$(call abspath,\$(heimdalsrcdir)/$file) $prefix $options\n\n";
|
||||
|
||||
open(IN,"heimdal/$file") or die("Can't open heimdal/$file: $!");
|
||||
my @lines = <IN>;
|
||||
|
@ -10,7 +10,7 @@ my $header = "$dirname/$basename"; $header =~ s/\.et$/.h/;
|
||||
my $source = "$dirname/$basename"; $source =~ s/\.et$/.c/;
|
||||
print "$header $source: \$(heimdalsrcdir)/$file \$(ET_COMPILER)\n";
|
||||
print "\t\@echo \"Compiling error table $file\"\n";
|
||||
print "\t\@\$(heimdalbuildsrcdir)/et_compile_wrapper.sh \$(builddir) $dirname \$(ET_COMPILER) \$(abspath \$(heimdalsrcdir)/$file) $source\n\n";
|
||||
print "\t\@\$(heimdalbuildsrcdir)/et_compile_wrapper.sh \$(builddir) $dirname \$(ET_COMPILER) \$(call abspath,\$(heimdalsrcdir)/$file) $source\n\n";
|
||||
|
||||
print "clean:: \n";
|
||||
print "\t\@rm -f $header $source\n\n";
|
||||
|
Loading…
x
Reference in New Issue
Block a user