57ar7up
57ar7up

Reputation: 442

AC_CONFIG_MACRO_DIRS([build-aux/m4]) conflicts with ACLOCAL.AMFLAGS=-I build-aux/m4

On Windows Cygwin make of some program gives

libtoolize: putting auxiliary files in AC_CONFIG_AUX_DIR, 'build-aux'.
libtoolize: copying file 'build-aux/ltmain.sh'
libtoolize:   error: AC_CONFIG_MACRO_DIRS([build-aux/m4]) conflicts with ACLOCAL.AMFLAGS=-I build-aux/m4

Upvotes: 12

Views: 8300

Answers (2)

Ramya
Ramya

Reputation: 51

Convert using the below command:

dos2unix Makefile.am

Upvotes: 5

Hui  Wang
Hui Wang

Reputation: 546

Look here:

http://pete.akeo.ie/2010/12/that-darn-libtoolize-acconfigmacrodirm4.html

Maybe u can do like this:

find . -name \*.m4|xargs dos2unix
find . -name \*.ac|xargs dos2unix
find . -name \*.am|xargs dos2unix

Upvotes: 43

Related Questions