summaryrefslogtreecommitdiff
path: root/usr.sbin/httpd/Makefile.tmpl
diff options
context:
space:
mode:
authorHenning Brauer <henning@cvs.openbsd.org>2002-07-26 10:21:45 +0000
committerHenning Brauer <henning@cvs.openbsd.org>2002-07-26 10:21:45 +0000
commit55e2bdd7286db22fbc6c458d543dc200cd0156e6 (patch)
treeaa4d39c61e84a4f9aff64623f6db0dc77e90d1da /usr.sbin/httpd/Makefile.tmpl
parentf5b35adcce72f17d65389af8d1d834688a11569d (diff)
few more $(SHELL); "Aaron Yourk" <ayourk@srt.com>
Diffstat (limited to 'usr.sbin/httpd/Makefile.tmpl')
-rw-r--r--usr.sbin/httpd/Makefile.tmpl8
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/httpd/Makefile.tmpl b/usr.sbin/httpd/Makefile.tmpl
index 91ed3f86894..e696df7d5ac 100644
--- a/usr.sbin/httpd/Makefile.tmpl
+++ b/usr.sbin/httpd/Makefile.tmpl
@@ -85,8 +85,8 @@ AUX = @AUX@
CP = cp
LN = ln
RM = rm -f
-MKDIR = $(TOP)/$(AUX)/mkdir.sh
-INSTALL = $(TOP)/$(AUX)/install.sh -c
+MKDIR = $(SHELL) $(TOP)/$(AUX)/mkdir.sh
+INSTALL = $(SHELL) $(TOP)/$(AUX)/install.sh -c
IFLAGS_PROGRAM = @IFLAGS_PROGRAM@
IFLAGS_CORE = @IFLAGS_CORE@
IFLAGS_DSO = @IFLAGS_DSO@
@@ -338,7 +338,7 @@ install-mktree:
$(MKDIR) $(root)$(runtimedir)
$(MKDIR) $(root)$(logfiledir)
$(MKDIR) $(root)$(proxycachedir)
- -@if [ "x`$(AUX)/getuid.sh`" = "x0" ]; then \
+ -@if [ "x`$(SHELL) $(AUX)/getuid.sh`" = "x0" ]; then \
echo "chown $(conf_user) $(root)$(proxycachedir)"; \
chown $(conf_user) $(root)$(proxycachedir); \
echo "chgrp $(conf_group) $(root)$(proxycachedir)"; \
@@ -387,7 +387,7 @@ install-programs:
file=`echo $${mod} | sed -e 's;^.*/\([^/]*\);\1;'`; \
echo "$(INSTALL_DSO) $(TOP)/$(SRC)/$${mod} $(root)$(libexecdir)/$${file}"; \
$(INSTALL_DSO) $(TOP)/$(SRC)/$${mod} $(root)$(libexecdir)/$${file}; \
- name=`$(TOP)/$(AUX)/fmn.sh $(TOP)/$(SRC)/$${mod}`; \
+ name=`$(SHELL) $(TOP)/$(AUX)/fmn.sh $(TOP)/$(SRC)/$${mod}`; \
if [ ".$$name" = .ssl_module ]; then \
echo "<IfDefine SSL>" >>$(SRC)/.apaci.install.conf; \
fi; \