r15267: Fix call to mkdir() for old versions of perl. This should fix installation on
authorJelmer Vernooij <jelmer@samba.org>
Wed, 26 Apr 2006 09:51:02 +0000 (09:51 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 19:04:59 +0000 (14:04 -0500)
sun1.
(This used to be commit a56900a7a2e40f17df9a49e7aa3faf561173fe37)

source4/build/smb_build/TODO
source4/script/installheader.pl

index aa1b3ce3ceace0a84c85a00ce1b94ef4ff9fc4df..e74e7790a028e0ea2ca61941e2890ce548ec2d73 100644 (file)
@@ -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?
index e0597ab3812cb3f4ad1d05c4cdd3fe6f463f575c..a47e2b1177b92a7fdc190bd6b80648a788b303fc 100755 (executable)
@@ -90,7 +90,7 @@ foreach my $p (@ARGV)
        my $dirname = dirname($p2);
 
        if (! -d "$includedir/$dirname") {
-               mkdir("$includedir/$dirname");
+               mkdir("$includedir/$dirname", 0777);
        }
 
        if ( -f "$includedir/$p2" ) {