-
Notifications
You must be signed in to change notification settings - Fork 53
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
Make install fails on Debian #14
Comments
Also, config.log:1016 shows: |
Ah, yeah, it's probably setup for an ancient version of auto*. |
For the record, for missing |
I can confirm that the project builds successfully with Debian 9.1.0 "Stretch". This bug should be closed as duplicate of #25. Build log: Install dependencies: sudo apt-get install libxml2-utils perl libxml-perl fftw-dev libtool pkg-config gettext Build/install: autoreconf -i
./configure
make
make install prefix=$HOME/Desktop/swh Results:
|
@tresf solution worked for me on Linux Mint 20.10 thanks! |
I fetched latest source, then did:
and all of these ran without error. Then, when I ran:
sudo make install
I got:When I looked in po/Makefile, I see this:
MKINSTALLDIRS = $(top_builddir)/./mkinstalldirs
when I think it should be:MKINSTALLDIRS = $(top_srcdir)/install-sh -d
. When I changed it to that install ran fine.I don't understand autoreconf well enough to know where to start looking to fix and submit a patch.
The text was updated successfully, but these errors were encountered: