diff options
author | Stefan Metzmacher <metze@samba.org> | 2007-01-15 13:28:09 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:43:32 -0500 |
commit | 1d6456fd6087c16bd6587768be6f8d81d94164db (patch) | |
tree | fbb7dfceaf5a82cfefc4b47a1b896783bbcdd55b /source4/heimdal_build/et_deps.pl | |
parent | 5de50f5a66f006bdeae38c7eeb7c6f7e947c10d8 (diff) | |
download | samba-1d6456fd6087c16bd6587768be6f8d81d94164db.tar.gz samba-1d6456fd6087c16bd6587768be6f8d81d94164db.tar.xz samba-1d6456fd6087c16bd6587768be6f8d81d94164db.zip |
r20804: work arround HPUX and Tru64 make which don't like $$startdir
we now call asn1_compile and compile_et via a wrapper script
metze
(This used to be commit a5b67f5c7e78d3cf74668c7c6bf9aecd8e147d41)
Diffstat (limited to 'source4/heimdal_build/et_deps.pl')
-rwxr-xr-x | source4/heimdal_build/et_deps.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/heimdal_build/et_deps.pl b/source4/heimdal_build/et_deps.pl index eceedca211..1ebe496618 100755 --- a/source4/heimdal_build/et_deps.pl +++ b/source4/heimdal_build/et_deps.pl @@ -10,7 +10,7 @@ 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"; +print "\t\@\$(builddir)/heimdal_build/et_compile_wrapper.sh \$(srcdir) \$(builddir) $dirname bin/compile_et $file\n\n"; print "clean:: \n"; -print "\n\t\@rm -f $header $source"; +print "\t\@rm -f $header $source\n\n"; |