svn commit: samba r15267 - in branches/SAMBA_4_0/source: build/smb_build script

jelmer at samba.org jelmer at samba.org
Wed Apr 26 09:51:02 GMT 2006


Author: jelmer
Date: 2006-04-26 09:51:02 +0000 (Wed, 26 Apr 2006)
New Revision: 15267

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

Log:
Fix call to mkdir() for old versions of perl. This should fix installation on 
sun1.

Modified:
   branches/SAMBA_4_0/source/build/smb_build/TODO
   branches/SAMBA_4_0/source/script/installheader.pl


Changeset:
Modified: branches/SAMBA_4_0/source/build/smb_build/TODO
===================================================================
--- branches/SAMBA_4_0/source/build/smb_build/TODO	2006-04-26 09:43:39 UTC (rev 15266)
+++ branches/SAMBA_4_0/source/build/smb_build/TODO	2006-04-26 09:51:02 UTC (rev 15267)
@@ -1,4 +1,7 @@
-- let the build system implement some make functions($(patsubst),$(wildcard),...)
+- let the build system implement some make functions($(patsubst),$(wildcard),...) and use our own implementations where `make' does not support them
+- fix --enable-dso:
+ - loop over all the dependencies of a SUBSYSTEM
+  - include their PUBLIC_CFLAGS
 - 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/script/installheader.pl
===================================================================
--- branches/SAMBA_4_0/source/script/installheader.pl	2006-04-26 09:43:39 UTC (rev 15266)
+++ branches/SAMBA_4_0/source/script/installheader.pl	2006-04-26 09:51:02 UTC (rev 15267)
@@ -90,7 +90,7 @@
 	my $dirname = dirname($p2);
 
 	if (! -d "$includedir/$dirname") {
-		mkdir("$includedir/$dirname");
+		mkdir("$includedir/$dirname", 0777);
 	}
 
 	if ( -f "$includedir/$p2" ) {



More information about the samba-cvs mailing list