1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

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

sun1.
This commit is contained in:
Jelmer Vernooij 2006-04-26 09:51:02 +00:00 committed by Gerald (Jerry) Carter
parent a7c1302041
commit a56900a7a2
2 changed files with 5 additions and 2 deletions

View 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?

View File

@ -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" ) {