Skip to content

Commit a1ab6a1

Browse files
authoredJun 12, 2024
fix(makefile): gnodev with make install (#2346)
<!-- please provide a detailed description of the changes made in this pull request. --> In this PR the Makefile for `contribs/` was changed, so running `make install` in the root Makefile will not install `gnodev` properly. I've fixed the path to get back to the original, intended functionality. <details><summary>Contributors' checklist...</summary> - [x] Added new tests, or not needed, or not feasible - [x] Provided an example (e.g. screenshot) to aid review or the PR is self-explanatory - [x] Updated the official documentation or not needed - [x] No breaking changes were made, or a `BREAKING CHANGE: xxx` message was included in the description - [x] Added references to related issues and PRs - [ ] Provided any useful hints for running manual tests - [ ] Added new benchmarks to [generated graphs](https://gnoland.github.io/benchmarks), if any. More info [here](https://github.com/gnolang/gno/blob/master/.benchmarks/README.md). </details>
1 parent 719ee92 commit a1ab6a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ install.gno:
4343
@printf "\033[0;32m[+] 'gno' has been installed. Read more in ./gnovm/\033[0m\n"
4444
.PHONY: install.gnodev
4545
install.gnodev:
46-
$(MAKE) --no-print-directory -C ./contribs install.gnodev
46+
$(MAKE) --no-print-directory -C ./contribs/gnodev install
4747
@printf "\033[0;32m[+] 'gnodev' has been installed. Read more in ./contribs/gnodev/\033[0m\n"
4848

4949
# old aliases

0 commit comments

Comments
 (0)