[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Bash-3.0 installing builtin helps
From: |
Stephane CHAZELAS |
Subject: |
Bash-3.0 installing builtin helps |
Date: |
Wed, 28 Jul 2004 17:29:13 +0000 |
User-agent: |
slrn/0.9.8.0 (CYGWIN_NT-5.0) |
After a configure with --enable-separate-helpfiles here on Solaris,
In builtins/Makefile:
install-help:
@-if test -n "${HELPDIR}" && test -d helpfiles ; then \
test -d ${HELPDIR} || ${SHELL} ${MKDIRS} $(DESTDIR)$(HELPDIR) ;\
( cd helpfiles ; \
for f in *; do \
echo installing $$f; \
${INSTALL_DATA} $$f $(DESTDIR)$(HELPDIR); \
done; ) ; \
fi
But INSTALL_DATA is .././support/install.sh -c
So after "cd helpfiles", the path is not valid anymore
for f in helpfiles/*; do \
echo installing $$f; \
${INSTALL_DATA} $$f $(DESTDIR)$(HELPDIR); \
done; \
works better.
--
Stephane
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- Bash-3.0 installing builtin helps,
Stephane CHAZELAS <=