summaryrefslogtreecommitdiff
path: root/contrib/rserv
diff options
context:
space:
mode:
authorPeter Eisentraut2001-09-06 10:49:30 +0000
committerPeter Eisentraut2001-09-06 10:49:30 +0000
commit17cc78ef01679deae3f0dac1c35ae777c2c73723 (patch)
tree57c116d4f29272878495dc748a14cb7249f5dc7c /contrib/rserv
parent22ae53d4cdca7244b0de25f1d28255e1649aa936 (diff)
To fix the perpetually broken makefiles in the contrib tree, I have
written a generic framework of rules that the contrib makefiles can use instead of writing their own each time. You only need to set a few variables and off you go.
Diffstat (limited to 'contrib/rserv')
-rw-r--r--contrib/rserv/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/rserv/Makefile b/contrib/rserv/Makefile
index 25dfeeacb1..7306759b30 100644
--- a/contrib/rserv/Makefile
+++ b/contrib/rserv/Makefile
@@ -41,9 +41,9 @@ install: all installdirs
for file in $(TCLS) $(PERLS) $(SCRIPTS); do \
$(INSTALL_SCRIPT) $$file $(DESTDIR)$(bindir) || exit ; \
done
- $(INSTALL_DATA) RServ.pm $(DESTDIR)$(datadir)/contrib
+ $(INSTALL_DATA) $(srcdir)/RServ.pm $(DESTDIR)$(datadir)/contrib
$(INSTALL_SHLIB) $(SONAME) $(DESTDIR)$(libdir)/contrib
- $(INSTALL_DATA) README.$(NAME) $(DESTDIR)$(docdir)/contrib
+ $(INSTALL_DATA) $(srcdir)/README.$(NAME) $(DESTDIR)$(docdir)/contrib
installdirs:
$(mkinstalldirs) $(DESTDIR)$(bindir) $(DESTDIR)$(datadir)/contrib \