summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMichal Rokos <michal.rokos@nextsoft.cz>2006-07-08 15:27:10 (GMT)
committerJunio C Hamano <junkio@cox.net>2006-07-08 18:28:32 (GMT)
commit6e959ab05a0a626f6805581a04dfc4e220054c02 (patch)
tree41d15ec9fd4b978052a827c03932463b5079e0e6 /Makefile
parent6244b24906f9efa4c1d573fa79e73eaf8e557551 (diff)
downloadgit-6e959ab05a0a626f6805581a04dfc4e220054c02.zip
git-6e959ab05a0a626f6805581a04dfc4e220054c02.tar.gz
git-6e959ab05a0a626f6805581a04dfc4e220054c02.tar.bz2
sed -e '/RE/r rfile/' needs space in 'r rfile'
Some implementations of sed (like HP-UX one) mandate a space between 'r' and 'rfile'. Signed-off-by: Michal Rokos <michal.rokos@nextsoft.cz> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 202f261..5a625b4 100644
--- a/Makefile
+++ b/Makefile
@@ -552,9 +552,9 @@ git-instaweb: git-instaweb.sh gitweb/gitweb.cgi gitweb/gitweb.css
-e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
-e 's/@@NO_CURL@@/$(NO_CURL)/g' \
-e 's/@@NO_PYTHON@@/$(NO_PYTHON)/g' \
- -e '/@@GITWEB_CGI@@/rgitweb/gitweb.cgi' \
+ -e '/@@GITWEB_CGI@@/r gitweb/gitweb.cgi' \
-e '/@@GITWEB_CGI@@/d' \
- -e '/@@GITWEB_CSS@@/rgitweb/gitweb.css' \
+ -e '/@@GITWEB_CSS@@/r gitweb/gitweb.css' \
-e '/@@GITWEB_CSS@@/d' \
$@.sh > $@+
chmod +x $@+