We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
configure script has these lines:
configure
# Expand all variables in config.status. test "$prefix" = NONE && prefix=$ac_default_prefix test "$exec_prefix" = NONE && exec_prefix='${prefix}' for name in $ac_subst_vars; do declare $name="$(eval echo "${!name}")" declare $name="$(eval echo "${!name}")" declare $name="$(eval echo "${!name}")" done
which fail on POSIX sh. POSIX sh doesn't understand declare and ${!name} substitution.
declare
${!name}
The text was updated successfully, but these errors were encountered:
I marked this as stale due to inactivity. → More info
Sorry, something went wrong.
I closed this issue due to inactivity. → More info
Update documentation-survey.md (NixOS#610)
567c92a
* Update documentation-survey.md Summarise https://nixos.org/guides/nix-pills/working-derivation.html
peti
No branches or pull requests
configure
script has these lines:which fail on POSIX sh. POSIX sh doesn't understand
declare
and${!name}
substitution.The text was updated successfully, but these errors were encountered: