summaryrefslogtreecommitdiff
path: root/source4/heimdal_build/asn1_deps.pl
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2008-03-04 13:06:08 +0100
committerJelmer Vernooij <jelmer@samba.org>2008-03-04 13:06:08 +0100
commit6cf92e604d5d23018426f22d9cc9edd8d2da12ae (patch)
tree8f03efb7a47d47e231ca35f9779a569e74a225b2 /source4/heimdal_build/asn1_deps.pl
parent530c7a90fe6657a0387d678249a8f16b5aef1e3a (diff)
downloadsamba-6cf92e604d5d23018426f22d9cc9edd8d2da12ae.tar.gz
samba-6cf92e604d5d23018426f22d9cc9edd8d2da12ae.tar.bz2
samba-6cf92e604d5d23018426f22d9cc9edd8d2da12ae.zip
Fix the build.
(This used to be commit 49ef8d0c197fa61dc5c524e4a0f569af72d3c0e9)
Diffstat (limited to 'source4/heimdal_build/asn1_deps.pl')
-rwxr-xr-xsource4/heimdal_build/asn1_deps.pl7
1 files changed, 4 insertions, 3 deletions
diff --git a/source4/heimdal_build/asn1_deps.pl b/source4/heimdal_build/asn1_deps.pl
index f5ee2c54ea..a2fbb5e3d0 100755
--- a/source4/heimdal_build/asn1_deps.pl
+++ b/source4/heimdal_build/asn1_deps.pl
@@ -87,13 +87,14 @@ my $depstr = join(' ', @deps);
print '[SUBSYSTEM::HEIMDAL_'.uc($prefix).']'."\n";
print "CFLAGS = -Iheimdal_build -Iheimdal/lib/roken -I$dirname\n";
-print "\nPUBLIC_DEPENDENCIES = $depstr\n\n";
+print "PUBLIC_DEPENDENCIES = $depstr\n\n";
-print "HEIMDAL_".uc($prefix)."_OBJ_FILES = \$(addprefix heimdal/,";
+print "HEIMDAL_".uc($prefix)."_OBJ_FILES = ";
foreach $o_file (@o_files) {
print "\\\n\t$o_file";
}
-print "\t)\n\n";
+
+print "\n\n";
print "clean:: \n";
print "\t\@echo \"Deleting ASN1 output files generated from $file\"\n";