-
Notifications
You must be signed in to change notification settings - Fork 59
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
error: required file '../config.rpath' not found #53
Comments
I think you just need to create empty config.rpath like this: |
This actually means creating the file outside of the source tree (in parent directory ".."). This happens when the builder has placed fdkaac as a subdirectory of another autotools-based source tree (such as libfdk-aac). In my case, I had it in The problem is that automake has a documented "feature" that if To fix it I edited So the new configure.ac looks like:
Then automake won't probe outside the source tree. |
Thanks @jjr90, fixed on 1.0.6. |
error log
#12 249.6 Cloning into 'fdkaac'...
#12 254.1 configure.ac:56: error: required file '../config.rpath' not found
#12 254.2 autoreconf: automake failed with exit status: 1
my command
git clone https://github.com/nu774/fdkaac.git
cd fdkaac
autoreconf -i
./configure
make
make install
how to fix?
The text was updated successfully, but these errors were encountered: