From 91631d9b90c7422debb59b45b13bee9b6caba832 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Wed, 26 Apr 2006 09:51:02 +0000 Subject: r15267: Fix call to mkdir() for old versions of perl. This should fix installation on sun1. (This used to be commit a56900a7a2e40f17df9a49e7aa3faf561173fe37) --- source4/build/smb_build/TODO | 5 ++++- source4/script/installheader.pl | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) (limited to 'source4') diff --git a/source4/build/smb_build/TODO b/source4/build/smb_build/TODO index aa1b3ce3ce..e74e7790a0 100644 --- a/source4/build/smb_build/TODO +++ b/source4/build/smb_build/TODO @@ -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? diff --git a/source4/script/installheader.pl b/source4/script/installheader.pl index e0597ab381..a47e2b1177 100755 --- a/source4/script/installheader.pl +++ b/source4/script/installheader.pl @@ -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" ) { -- cgit