fdkaac icon indicating copy to clipboard operation
fdkaac copied to clipboard

error: required file '../config.rpath' not found

Open alamia442 opened this issue 3 years ago • 1 comments

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?

alamia442 avatar Jul 22 '22 06:07 alamia442

I think you just need to create empty config.rpath like this: $ touch config.rpath This error is caused by AM_ICONV in configure.ac to check iconv(), which requires iconv.m4, which requires AC_LIB_RPATH, which requires config.rpath presence.

nu774 avatar Jul 22 '22 06:07 nu774