summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorMatthieu Herrb <matthieu@cvs.openbsd.org>2006-12-02 08:56:59 +0000
committerMatthieu Herrb <matthieu@cvs.openbsd.org>2006-12-02 08:56:59 +0000
commitd2d140d59b62c7b44a33ad9374bd28548b167c8a (patch)
tree89a8635f9e4e9cfc0a6a7dd6847ef30450663538 /app
parent90abb2137f51501bba6e19d20fd3ca8899b80638 (diff)
regen
Diffstat (limited to 'app')
-rw-r--r--app/rstart/Makefile.in6
1 files changed, 4 insertions, 2 deletions
diff --git a/app/rstart/Makefile.in b/app/rstart/Makefile.in
index 81d444350..9d8c41725 100644
--- a/app/rstart/Makefile.in
+++ b/app/rstart/Makefile.in
@@ -775,7 +775,8 @@ rstartd: server.cpp
$(RAWCPP) $(RAWCPPFLAGS) $(MANDEFS) $(EXTRAMANDEFS) < $< | $(CPP_SED_MAGIC) > $@
install-data-hook:
- for name in `find ${srcdir}/commands -print | grep -v CVS` ; do \
+ ( cd ${srcdir}; \
+ for name in `find ./commands -print | grep -v CVS` ; do \
if test -f $$name; then \
sed \
-e 's,ENVPREFIX,RSTART,g' \
@@ -793,7 +794,7 @@ install-data-hook:
fi; \
done; \
\
- for name in `find ${srcdir}/contexts -print | grep -v CVS` ; do \
+ for name in `find ./contexts -print | grep -v CVS` ; do \
if test -f $$name; then \
sed \
-e 's,_PATH,$(DEFAULT_USER_PATH),g' \
@@ -805,6 +806,7 @@ install-data-hook:
fi ; \
fi ; \
done; \
+ ); \
\
cd $(DESTDIR)$(DATA_DIR)/contexts; \
sed -e '/^$$/d' -e '/^#/d' ${srcdir}/contexts/@Aliases | \