We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
libee 0.4.1 on centos 6.8, GNU make 3.81, GNU automake 1.11.1
i changed my make to make -j3
compilation failed with:
CCLD libee-convert libtool: link: cannot find the library ../src/libee.la' or unhandled argument ../src/libee.la' make[2]: *** [libee-convert] Error 1 make[2]: *** Waiting for unfinished jobs.... make[2]: Leaving directory *MASKED*/rpm/BUILD/libee-0.4.1/src' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory *MASKED*/rpm/BUILD/libee-0.4.1' make: *** [all] Error 2
CCLD libee-convert
libtool: link: cannot find the library ../src/libee.la' or unhandled argument ../src/libee.la'
make[2]: *** [libee-convert] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: Leaving directory *MASKED*/rpm/BUILD/libee-0.4.1/src'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory *MASKED*/rpm/BUILD/libee-0.4.1'
make: *** [all] Error 2
This was referenced in a mailing list thread here
proposed patch for src/Makefile.am was to change libee_convert_LDADD to: libee_convert_LDADD = libee.la $(LIBXML2_LIBS) $(LIBESTR_LIBS)
libee_convert_LDADD = libee.la $(LIBXML2_LIBS) $(LIBESTR_LIBS)
alternate patch (which i'm using) is to append to src/Makefile.am: libee_convert_DEPENDENCIES = libee.la
libee_convert_DEPENDENCIES = libee.la
Can we get this or something comparable applied?
Thanks,
-Tony
The text was updated successfully, but these errors were encountered:
No branches or pull requests
libee 0.4.1 on centos 6.8, GNU make 3.81, GNU automake 1.11.1
i changed my make to make -j3
compilation failed with:
CCLD libee-convert
libtool: link: cannot find the library ../src/libee.la' or unhandled argument ../src/libee.la'
make[2]: *** [libee-convert] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: Leaving directory *MASKED*/rpm/BUILD/libee-0.4.1/src'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory *MASKED*/rpm/BUILD/libee-0.4.1'
make: *** [all] Error 2
This was referenced in a mailing list thread here
proposed patch for src/Makefile.am was to change libee_convert_LDADD to:
libee_convert_LDADD = libee.la $(LIBXML2_LIBS) $(LIBESTR_LIBS)
alternate patch (which i'm using) is to append to src/Makefile.am:
libee_convert_DEPENDENCIES = libee.la
Can we get this or something comparable applied?
Thanks,
-Tony
The text was updated successfully, but these errors were encountered: