diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2003-03-24 19:18:24 +0000 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2003-03-24 19:18:24 +0000 |
commit | 9ba1ed52719df0a5eef723ecbfec11f6035a9710 (patch) | |
tree | ff3e78dde481c59d805d84c0244c44aca08e80f0 /source3/aclocal.m4 | |
parent | 068b1e91419bf95373597ef6cf94e76d1ff5af58 (diff) | |
download | samba-9ba1ed52719df0a5eef723ecbfec11f6035a9710.tar.gz samba-9ba1ed52719df0a5eef723ecbfec11f6035a9710.tar.xz samba-9ba1ed52719df0a5eef723ecbfec11f6035a9710.zip |
When using --with-static-modules=subsystem, don't build modules that
can't be build
(This used to be commit bb943a68af20f87a4b2d6b257585615d1792dd33)
Diffstat (limited to 'source3/aclocal.m4')
-rw-r--r-- | source3/aclocal.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/aclocal.m4 b/source3/aclocal.m4 index 4814a86a960..79fbc8628ed 100644 --- a/source3/aclocal.m4 +++ b/source3/aclocal.m4 @@ -43,7 +43,7 @@ AC_DEFUN(SMB_MODULE, AC_MSG_CHECKING([how to build $1]) if test "$[MODULE_][$1]"; then DEST=$[MODULE_][$1] - elif test "$[MODULE_]translit([$4], [A-Z], [a-z])"; then + elif test "$[MODULE_]translit([$4], [A-Z], [a-z])" -a "$[MODULE_DEFAULT_][$1]"; then DEST=$[MODULE_]translit([$4], [A-Z], [a-z]) else DEST=$[MODULE_DEFAULT_][$1] |