diff options
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 482f5d547..7fb77b16b 100644 --- a/Makefile.in +++ b/Makefile.in @@ -76,7 +76,13 @@ install.man uninstall.man: @cd Doc && $(MAKE) $(MAKEDEFS) $@ # install/uninstall just the shell functions -install.fns uninstall.fns: +install.fns: + test x$(sitefndir) != xno && $(sdir_top)/mkinstalldirs $(sitefndir) + @cd Completion && $(MAKE) $(MAKEDEFS) $@ + @cd Functions && $(MAKE) $(MAKEDEFS) $@ + +uninstall.fns: + # never attempt to remove $(sitefndir) @cd Completion && $(MAKE) $(MAKEDEFS) $@ @cd Functions && $(MAKE) $(MAKEDEFS) $@ |