From 9a9e446985fd50421b82172393591241964c2c5f Mon Sep 17 00:00:00 2001 From: Ryan Bloom Date: Sun, 21 Jan 2001 17:39:16 +0000 Subject: [PATCH] Fix a small bug that was making us create a directory called "-p" in the build directory. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87780 13f79535-47bb-0310-9956-ffa450edef68 --- Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index 76fa470af3..b45ffc373a 100644 --- a/Makefile.in +++ b/Makefile.in @@ -115,7 +115,7 @@ install-include: install-suexec: @if test -f $(builddir)/support/suexec; then \ - $(MKINSTALLDIRS) -p $(bindir)/sbin; \ + $(MKINSTALLDIRS) $(bindir)/sbin; \ cp -p $(srcdir)/support/suexec $(bindir)/sbin; \ fi -- 2.50.1