-
Notifications
You must be signed in to change notification settings - Fork 2
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
Add Ubuntu/debian note for configure script #5
base: master
Are you sure you want to change the base?
Conversation
I don't understand the need to provide this oddly specific information for a particular distribution family at this point. As a general note, if you are sending in PRs and realise changes are needed, please rebase into a single commit nd force-push; it's much easier to review that way. |
I think default configuration of |
The default value for |
Excuse me, @ibarwick, but what about ibarwick/firebird_fdw@4ce1f1a ? No problem with separate
both For Debian there is something similar
but
I don't know why Debian and Ubuntu not stick to the usual practice of Unix filesystems. |
I still don't understand what problem you are trying to solve here. It's normal for directories under You can, if you wish, configure |
Maybe real problem is near search paths (LD_LIBRARY_PATH ?) for
|
Other form of problem of search addresses is described here https://github.com/ibarwick/libfq/blob/master/INSTALL.md#known-ibaseh-locations |
@ibarwick , maybe you can add a check clause like distr=$(cat /etc/issue | cut -f 1 -d ' ');
if [ "$distr" == "Debian" ] || [ "$distr" == "Ubuntu" ] || [ "$distr" == "Mint" ]; then
ac_default_prefix=/usr
else
ac_default_prefix=/usr /local
fi near Line 581 in f9d0e2c
configure i other repos scripts resolve this Debain-derivative case?
|
No description provided.