> 2007-03-03 Bruno Haible <[EMAIL PROTECTED]> > > * modules/relocatable-prog-wrapper: New file.
This additionally needs a modification of gnulib-tool: 2007-03-05 Bruno Haible <[EMAIL PROTECTED]> * gnulib-tool (func_get_automake_snippet): Don't synthesize an EXTRA_lib_SOURCES augmentation for the relocatable-prog-wrapper module. *** gnulib-tool 4 Feb 2007 19:09:25 -0000 1.221 --- gnulib-tool 6 Mar 2007 03:17:07 -0000 *************** *** 1008,1019 **** # If some .c file exists and is not used with AC_LIBOBJ - for example, # a .c file is preprocessed into another .c file for BUILT_SOURCES -, # automake will generate a useless dependency; this is harmless. ! sed_extract_c_files='/\.c$/p' ! extra_files=`echo "$extra_files" | sed -n -e "$sed_extract_c_files"` ! if test -n "$extra_files"; then ! echo "EXTRA_lib_SOURCES +=" $extra_files ! echo ! fi ;; esac } --- 1008,1024 ---- # If some .c file exists and is not used with AC_LIBOBJ - for example, # a .c file is preprocessed into another .c file for BUILT_SOURCES -, # automake will generate a useless dependency; this is harmless. ! case "$1" in ! relocatable-prog-wrapper) ;; ! *) ! sed_extract_c_files='/\.c$/p' ! extra_files=`echo "$extra_files" | sed -n -e "$sed_extract_c_files"` ! if test -n "$extra_files"; then ! echo "EXTRA_lib_SOURCES +=" $extra_files ! echo ! fi ! ;; ! esac ;; esac }