summaryrefslogtreecommitdiff
path: root/source4/build/make
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2008-05-21 12:14:47 +0200
committerJelmer Vernooij <jelmer@samba.org>2008-05-21 12:14:47 +0200
commit904359cd2fcacf41d3e886921f40c7cb227b255d (patch)
tree019eb1db8091d7691cc88d528aefef8f8533dbdf /source4/build/make
parent12d32fb18ee3fe15ba4f7e26f49dcd8df974e089 (diff)
downloadsamba-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/build/make')
-rw-r--r--source4/build/make/templates.mk2
1 files changed, 1 insertions, 1 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