Rename onigumura to oniguruma

This change names the dependency like its called. The link to the
package was correct, but all other references were renamed where I could
find time with git grep.

Signed-off-by: Zeger-Jan van de Weg <git@zjvandeweg.nl>
This commit is contained in:
Zeger-Jan van de Weg
2018-03-28 20:52:49 +02:00
parent 0db3b4b553
commit 7923b86ebd
4 changed files with 17 additions and 17 deletions

View File

@ -42,7 +42,7 @@ NATIVE_LIB=./shared/enry.go
RUBEX_PATCHED := internal/code-generator/generator/heuristics.go internal/tokenizer/tokenize.go common.go
RUBEX_ORIG := $(RUBEX_PATCHED:=.orig)
.PHONY: revert-onigumura
.PHONY: revert-oniguruma
$(LINGUIST_PATH):
git clone https://github.com/github/linguist.git $@
@ -73,9 +73,9 @@ $(RUBEX_ORIG): %.orig : %
sed -i.orig -e 's/"regexp"/regexp "github.com\/moovweb\/rubex"/g' $<
@touch $@
onigumura: $(RUBEX_ORIG)
oniguruma: $(RUBEX_ORIG)
revert-onigumura:
revert-oniguruma:
@for file in $(RUBEX_PATCHED); do if [ -e "$$file.orig" ]; then mv "$$file.orig" "$$file" && echo mv "$$file.orig" "$$file"; fi; done
build-cli: