-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
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
SLAX_EXTDIR should be configurable #34
Comments
Will do. Thanks…..
|
See Homebrew/homebrew-core#865 for the motivation for this issue.
It would help with the Homebrew formula to have a configure option for the target directory into which juise's libslax extensions are installed (i.e., what is referred to as
SLAX_EXTDIR
in juise's build system).Perhaps it could be called
--with-libslax-extdir
or something similar.We would then be able to set
--with-libslax-extdir="#{lib}/slax/extensions"
(i.e.,/usr/local/Cellar/juise/0.6.1/lib/slax/extensions
) rather than hacking around the sandbox violation.Currently, in order to restrict
juise
to its configured prefix, I am having to use the following workaround:The reason this is necessary is that
make install
causes a sandbox violation when it attempts to install juise's slax extensions intoslax-config --extdir
(https://github.com/Juniper/juise/blob/master/libjuise/Makefile.am#L105-L119), which is outside of juise's prefix.Here's how the sandbox violation looks:
The text was updated successfully, but these errors were encountered: