-
Notifications
You must be signed in to change notification settings - Fork 97
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
installation stops with WARNING: 'aclocal-1.15' is missing on your system #97
Comments
See #91. The short version is that cloning from git does not preserve create timestamps, so a rebuild is triggered. Running autoconf like you have done will fix this issue. I have also found 'touch *' to get around the issue as well. |
A note was added to the README included in the v1.1 release: https://github.com/Jasig/mod_auth_cas/blob/master/README#L111 |
Thank a lot!!!!! My error resolved after following your steps |
I ran into a small issue during installation and I'm listing here FYI and for anyone that might be having problems with this.
After I start the installation:
$ ./configure && make && sudo make install
I receive this during the installation process:
Then I need to run autoconf:
$ autoreconf -f -i
Then run the install one more time:
$ ./configure && make && sudo make install
And now it installed.
The text was updated successfully, but these errors were encountered: