diff options
author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | 2006-07-02 11:31:30 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-07-02 11:04:50 -0700 |
commit | 07002287f3e219a16a948a8a6eca0a41162a491f (patch) | |
tree | 01fe3cc1c6b42ccf0e04cf45d8f153efc9de7003 /Makefile | |
parent | a51d37c1df66386a4d9b7559d64a39241d4e47da (diff) | |
download | git-07002287f3e219a16a948a8a6eca0a41162a491f.tar.gz git-07002287f3e219a16a948a8a6eca0a41162a491f.tar.xz |
Makefile: replace ugly and unportable sed invocation
Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -551,11 +551,11 @@ 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' \ - $@.sh | sed \ - -e 's|@@GITWEB_CGI@@|#!$(PERL_PATH_SQ)|; T; r gitweb/gitweb.cgi' \ - | sed \ - -e 's|@@GITWEB_CSS@@||; T; r gitweb/gitweb.css' \ - > $@+ + -e '/@@GITWEB_CGI@@/rgitweb/gitweb.cgi' \ + -e '/@@GITWEB_CGI@@/d' \ + -e '/@@GITWEB_CSS@@/rgitweb/gitweb.css' \ + -e '/@@GITWEB_CSS@@/d' \ + $@.sh > $@+ chmod +x $@+ mv $@+ $@ |