diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-05-21 12:14:47 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-05-21 12:14:47 +0200 |
commit | 904359cd2fcacf41d3e886921f40c7cb227b255d (patch) | |
tree | 019eb1db8091d7691cc88d528aefef8f8533dbdf /source4 | |
parent | 12d32fb18ee3fe15ba4f7e26f49dcd8df974e089 (diff) | |
download | samba-904359cd2fcacf41d3e886921f40c7cb227b255d.tar.gz samba-904359cd2fcacf41d3e886921f40c7cb227b255d.tar.bz2 samba-904359cd2fcacf41d3e886921f40c7cb227b255d.zip |
Fix installed symlinks (cp was trying to be smart).
(This used to be commit a95f2bf86a75729717542b401aa39bedd21be8d0)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/build/make/templates.mk | 2 | ||||
-rw-r--r-- | source4/param/config.mk | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/source4/build/make/templates.mk b/source4/build/make/templates.mk index 48678c5603..1c0af4dee6 100644 --- a/source4/build/make/templates.mk +++ b/source4/build/make/templates.mk @@ -92,7 +92,7 @@ PLUGINS += bin/modules/$(2)/$(3).$$(SHLIBEXT) uninstallplugins:: @-rm $$(DESTDIR)$$(modulesdir)/$(2)/$(3).$$(SHLIBEXT) installplugins:: - @ln -fs $(1) $$(DESTDIR)$$(modulesdir)/$(2)/$(3).$$(SHLIBEXT) + @ln -fs $(basename $(1)) $$(DESTDIR)$$(modulesdir)/$(2)/$(3).$$(SHLIBEXT) endef diff --git a/source4/param/config.mk b/source4/param/config.mk index a25dd32194..cf92089d5c 100644 --- a/source4/param/config.mk +++ b/source4/param/config.mk @@ -57,7 +57,7 @@ PRIVATE_DEPENDENCIES = LIBLDB TDB_WRAP UTIL_TDB NDR_SECURITY SECRETS_OBJ_FILES = $(paramsrcdir)/secrets.o -[PYTHON::param] +[PYTHON::samba.param] SWIG_FILE = param.i PRIVATE_DEPENDENCIES = LIBSAMBA-HOSTCONFIG |