diff options
author | dundargoc <gocdundar@gmail.com> | 2024-04-24 22:40:10 +0200 |
---|---|---|
committer | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2024-04-25 11:17:54 +0200 |
commit | a1c2da56ecef9c7a0e17be02f587d7c7f9eee170 (patch) | |
tree | b2979f9533c562841d3c92a1df9797a114996285 /CONTRIBUTING.md | |
parent | 2b9df3f79541507bfc3ba2645e6b9740e7c922ed (diff) | |
download | rneovim-a1c2da56ecef9c7a0e17be02f587d7c7f9eee170.tar.gz rneovim-a1c2da56ecef9c7a0e17be02f587d7c7f9eee170.tar.bz2 rneovim-a1c2da56ecef9c7a0e17be02f587d7c7f9eee170.zip |
build: do not use GIT_REPOSITORY for local dependencies
This reverts a large portion of
2c1e8f7e96926f70151d737ea32f1e6ff3589263.
The conclusion from that commit is incorrect: local builds are not
used/updated correctly so much as it's not used at all. Instead the
build will always use `master` branch rather than the current files.
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r-- | CONTRIBUTING.md | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 88d2a99029..7bfff05564 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -319,9 +319,8 @@ check from cmake. Alternatively, you may point the URL as a local path where the repository is. This is convenient when bisecting a problem in a dependency with `git bisect`. -This requires running `make distclean` the first time once to remove traces of -the previous build. Hash checking is always skipped in this case regardless of -`DEPS_IGNORE_SHA`. +This may require running `make distclean` between each build. Hash checking is +always skipped in this case regardless of `DEPS_IGNORE_SHA`. ```bash LUAJIT_URL /home/user/luajit |