diff options
author | Michal Rokos <michal.rokos@nextsoft.cz> | 2006-07-08 17:27:10 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-07-08 11:28:32 -0700 |
commit | 6e959ab05a0a626f6805581a04dfc4e220054c02 (patch) | |
tree | 41d15ec9fd4b978052a827c03932463b5079e0e6 | |
parent | 6244b24906f9efa4c1d573fa79e73eaf8e557551 (diff) | |
download | git-6e959ab05a0a626f6805581a04dfc4e220054c02.tar.gz |
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>
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 $@+ |