mirror of
https://github.com/samba-team/samba.git
synced 2025-01-13 13:18:06 +03:00
72948b91a0
* updating Makefile & configure script to use CONFIGDIR & VFSLIBDIR * set LIBDIR to ${prefix}/lib/samba when --with-fhs is enabled * make installdirs take an arbitrary number of arguements (This used to be commit f0d09cf676bc335e8fde9fe730730f2949411a54)
18 lines
166 B
Bash
Executable File
18 lines
166 B
Bash
Executable File
#!/bin/sh
|
|
|
|
while ( test -n "$1" ); do
|
|
if [ ! -d $1 ]; then
|
|
mkdir -p $1
|
|
fi
|
|
|
|
if [ ! -d $1 ]; then
|
|
echo Failed to make directory $1
|
|
exit 1
|
|
fi
|
|
|
|
shift;
|
|
done
|
|
|
|
|
|
|