svn commit: samba r15263 - in branches/SAMBA_4_0/source: build/smb_build heimdal_build

jelmer at samba.org jelmer at samba.org
Wed Apr 26 00:46:11 GMT 2006


Author: jelmer
Date: 2006-04-26 00:46:10 +0000 (Wed, 26 Apr 2006)
New Revision: 15263

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=15263

Log:
Remove another use of patsubst (should make tru64 happy)

Added:
   branches/SAMBA_4_0/source/heimdal_build/hcrypto-deps.pl
Modified:
   branches/SAMBA_4_0/source/build/smb_build/TODO
   branches/SAMBA_4_0/source/heimdal_build/config.mk


Changeset:
Modified: branches/SAMBA_4_0/source/build/smb_build/TODO
===================================================================
--- branches/SAMBA_4_0/source/build/smb_build/TODO	2006-04-26 00:11:33 UTC (rev 15262)
+++ branches/SAMBA_4_0/source/build/smb_build/TODO	2006-04-26 00:46:10 UTC (rev 15263)
@@ -1,3 +1,4 @@
+- let the build system implement some make functions($(patsubst),$(wildcard),...)
 - make --enable-dso the default
  - fix module loading for selftest during non-developer builds
 - clearer distinction between dcerpc and ndr. seperate interface tables?

Modified: branches/SAMBA_4_0/source/heimdal_build/config.mk
===================================================================
--- branches/SAMBA_4_0/source/heimdal_build/config.mk	2006-04-26 00:11:33 UTC (rev 15262)
+++ branches/SAMBA_4_0/source/heimdal_build/config.mk	2006-04-26 00:46:10 UTC (rev 15263)
@@ -455,7 +455,7 @@
 heimdal/lib/roken/vis.h: heimdal/lib/roken/vis.hin
 heimdal/lib/roken/err.h: heimdal/lib/roken/err.hin
 
-$(patsubst heimdal/lib/des/%.h,heimdal/lib/des/hcrypto/%.h,$(wildcard heimdal/lib/des/*.h)): heimdal/lib/des/hcrypto
+include hcrypto-deps.pl heimdal/lib/des/*.h|
 
 heimdal/lib/des/hcrypto: 
 	rm -f $@; ln -s ./../des $@

Added: branches/SAMBA_4_0/source/heimdal_build/hcrypto-deps.pl
===================================================================
--- branches/SAMBA_4_0/source/heimdal_build/hcrypto-deps.pl	2006-04-26 00:11:33 UTC (rev 15262)
+++ branches/SAMBA_4_0/source/heimdal_build/hcrypto-deps.pl	2006-04-26 00:46:10 UTC (rev 15263)
@@ -0,0 +1,9 @@
+#!/usr/bin/perl
+use strict;
+
+foreach (@ARGV) {
+	my $old = $_;
+	my $new = $old; $new =~ s/des/des\/hcrypto/g;
+	my $dir = $old; 
+	print "$new: $old heimdal/lib/des/hcrypto\n";
+}


Property changes on: branches/SAMBA_4_0/source/heimdal_build/hcrypto-deps.pl
___________________________________________________________________
Name: svn:executable
   + *



More information about the samba-cvs mailing list