Try building Tor using the tor-rust-dependencies submodule, without actually setting TOR_RUST_DEPENDENCIES. It's supposed to work, but it doesn't: it looks at the wrong directory.
To upload designs, you'll need to enable LFS and have an admin enable hashed storage. More information
Child items 0
Show closed items
No child items are currently assigned. Use child items to break down this issue into smaller parts.
Linked items 0
Link issues together to show that they're related.
Learn more.
ERRORED is probably not necessary because AC_MSG_ERROR already exits the configure script with an error
maybe pwd should be pwd -P || pwd, because bash will retain symbolic link path components by default unless set -o physical is in effect. (The || pwd is in case we're running on a shell that's too old to support pwd -P.)
Probably not for a bugfix (maybe a separate ticket):
using dnl for comments prevents them from appearing in the generated configure script; maybe these should be # comments instead. (I think it's OK to match surrounding style for now.)
maybe pwd should be pwd -P || pwd, because bash will retain symbolic link path components by default unless set -o physical is in effect. (The || pwd is in case we're running on a shell that's too old to support pwd -P.)
either pwd works, and just use it, or it doesn't work, and we need to pull in a real realpath. in this case, it should work fine, so just use pwd.
Probably not for a bugfix (maybe a separate ticket):
using dnl for comments prevents them from appearing in the generated configure script; maybe these should be # comments instead. (I think it's OK to match surrounding style for now.)
doesn't really matter, configure scripts are utterly unreadable anyways.
either pwd works, and just use it, or it doesn't work, and we need to pull in a real realpath. in this case, it should work fine, so just use pwd.
Good point. If cargo doesn't need parent directories to be "physical", then maybe it's not important and plain pwd will do.
We could also leave cleaning up of ERRORED to another ticket that isn't a bugfix; I don't feel too strongly either way. So merging this as-is for 0.3.3 is fine with me.