tags 646286 + patch
thanks

* Dominic Hargreaves <d...@earth.li>, 2011-10-22, 22:57:
i486-linux-gnu-g++: error: /usr/lib/gcc/i4.6-linux-gnu/4.6/../../../i386-linux-g
nu/crtn.o: No such file or directory
make[4]: *** [libgendersplusplus.la] Error 1
make[4]: Leaving directory `/build/dom-genders_1.17-2-i386-4XUFKc/genders-1.17/s
rc/extensions/cplusplus'
make[3]: *** [all-recursive] Error 1
make[2]: *** [all-recursive] Error 1
make[1]: *** [all-recursive] Error 1
make: *** [build-arch-stamp] Error 2

I believe that this is caused by old (and buggy libtool). Upgrading to the current version should make this go away.

As a band-aid fix, please apply the attached patch and then run autoconf.

--
Jakub Wilk
--- a/aclocal.m4
+++ b/aclocal.m4
@@ -4441,11 +4441,11 @@
 
 # Dependencies to place before the objects being linked to create a
 # shared library.
-predep_objects=\`echo $lt_[]_LT_AC_TAGVAR(predep_objects, $1) | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\`
+predep_objects=\`echo $lt_[]_LT_AC_TAGVAR(predep_objects, $1)\`
 
 # Dependencies to place after the objects being linked to create a
 # shared library.
-postdep_objects=\`echo $lt_[]_LT_AC_TAGVAR(postdep_objects, $1) | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\`
+postdep_objects=\`echo $lt_[]_LT_AC_TAGVAR(postdep_objects, $1)\`
 
 # Dependencies to place before the objects being linked to create a
 # shared library.
@@ -4457,7 +4457,7 @@
 
 # The library search path used internally by the compiler when linking
 # a shared library.
-compiler_lib_search_path=\`echo $lt_[]_LT_AC_TAGVAR(compiler_lib_search_path, $1) | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\`
+compiler_lib_search_path=\`echo $lt_[]_LT_AC_TAGVAR(compiler_lib_search_path, $1)\`
 
 # Method to check whether dependent libraries are shared objects.
 deplibs_check_method=$lt_deplibs_check_method
@@ -4537,7 +4537,7 @@
 link_all_deplibs=$_LT_AC_TAGVAR(link_all_deplibs, $1)
 
 # Compile-time system search path for libraries
-sys_lib_search_path_spec=\`echo $lt_sys_lib_search_path_spec | \$SED -e "s@\${gcc_dir}@\\\${gcc_dir}@g;s@\${gcc_ver}@\\\${gcc_ver}@g"\`
+sys_lib_search_path_spec=\`echo $lt_sys_lib_search_path_spec\`
 
 # Run-time system search path for libraries
 sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec

Reply via email to