Skip to content

Commit

Permalink
fix syntax in makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
Leonid Pliushch committed Oct 30, 2020
1 parent e3c3811 commit be34725
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ install: termux-api
install termux-api $(PREFIX)/libexec/
install termux-callback $(PREFIX)/libexec/
for i in scripts/*; do \
sed -e "s|@TERMUX_PREFIX@|$(PREFIX)|g" $i $(PREFIX)/bin/$i; \
chmod 700 $(PREFIX)/bin/$i; \
sed -e "s|@TERMUX_PREFIX@|$(PREFIX)|g" $$i > $(PREFIX)/bin/$$i; \
chmod 700 $(PREFIX)/bin/$$i; \
done

.PHONY: install

0 comments on commit be34725

Please sign in to comment.