mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-07-01 18:26:38 +02:00
Remove the bash completion. Add support for generic implementation on windows
This commit is contained in:
parent
2970d69e76
commit
7161b00543
2 changed files with 5 additions and 9 deletions
7
Makefile
7
Makefile
|
@ -415,12 +415,7 @@ install-base: all
|
|||
$(INSTALL) -m0644 doc/chibi-doc.1 $(DESTDIR)$(MANDIR)/
|
||||
-if type $(LDCONFIG) >/dev/null 2>/dev/null; then $(LDCONFIG) >/dev/null 2>/dev/null; fi
|
||||
|
||||
install-bash-completion:
|
||||
if [ -d "/etc/bash_completion.d" ]; then \
|
||||
cp tools/snow-chibi-completion.bash /etc/bash_completion.d/snow-chibi; \
|
||||
fi
|
||||
|
||||
install: install-base install-bash-completion
|
||||
install: install-base
|
||||
ifneq "$(IMAGE_FILES)" ""
|
||||
echo "Generating images"
|
||||
-[ -z "$(DESTDIR)" ] && LD_LIBRARY_PATH="$(SOLIBDIR):$(LD_LIBRARY_PATH)" DYLD_LIBRARY_PATH="$(SOLIBDIR):$(DYLD_LIBRARY_PATH)" CHIBI_MODULE_PATH="$(MODDIR):$(BINMODDIR)" $(BINDIR)/chibi-scheme$(EXE) -mchibi.repl -d $(MODDIR)/chibi.img
|
||||
|
|
|
@ -1372,9 +1372,10 @@
|
|||
char-whitespace?)))))
|
||||
(list (or dir "/usr/local/share/cyclone/"))))
|
||||
((generic)
|
||||
(list (make-path (string-append (or (conf-get cfg 'install-prefix)
|
||||
"/usr/local")
|
||||
"/lib/snow"))))
|
||||
(list (make-path (or (conf-get cfg 'install-prefix)
|
||||
(cond-expand (windows (get-environment-variable "LOCALAPPDATA"))
|
||||
(else "/usr/local"))
|
||||
"/lib/snow"))))
|
||||
((gauche)
|
||||
(list
|
||||
(let ((dir (string-trim
|
||||
|
|
Loading…
Add table
Reference in a new issue