[Date Prev][Date Next] [Chronological] [Thread] [Top]

make depend in shell-backends fails (ITS#1399)



Full_Name: Peter Marschall
Version: 20.0.17
OS: Linux 2.4.x
URL: ftp://ftp.openldap.org/incoming/
Submission from: (NULL) (194.145.150.12)


Hi,

when trying to compile openldap 2.0.17 with --enable-modules --enable-shell and
--with-shell-module=dynamic, make depend fails in servers/slapd/shell-backends
bacaus it cannot make the required target depend-mod.

The following patch to Makefile.in fixes the problem:

-------------8< snip >8----------------
--- servers/slapd/shell-backends/Makefile.in
+++ servers/slapd/shell-backends/Makefile.in    Sun Oct 21 11:51:38 2001
@@ -14,6 +14,11 @@
 BUILD_OPT = "--enable-shell"
 BUILD_SRV = @BUILD_SHELL@

+# create programs also when using modules
+depend-mod: depend-yes
+all-mod: all-yes
+install-mod: install-yes
+
 all-local-srv: $(PROGRAMS)

 passwd-shell:  pwd-version.o
-------------8< snip >8----------------

Yours
Peter