Paul Eggert asked: > > - Update the module dependency list in lib/relocwrapper.c and the file > > list > > in modules/relocatable-prog-wrapper. > > Sorry, what modification would be needed there? breadlinkat.c doesn't > link to malloc/free/etc. so why would relocwrapper need to be changed? > (Sorry, I don't fully understand relocwrapper.)
I meant these modifications. We need to keep track of the dependencies of 'progreloc' manually, because the build-aux/install-reloc script contains this list, and it is not automatically generated by gnulib-tool. 2011-04-09 Bruno Haible <[email protected]> relocatable-prog-wrapper: Update after module 'areadlink' changed. * lib/relocwrapper.c: Update dependencies hierarchy. * build-aux/install-reloc: Update list of files to be compiled. * modules/relocatable-prog-wrapper (Files): Add lib/careadlinkat.[hc], lib/allocator.[hc]. --- lib/relocwrapper.c.orig Sat Apr 9 18:02:24 2011 +++ lib/relocwrapper.c Sat Apr 9 18:00:30 2011 @@ -20,7 +20,9 @@ -> progname -> progreloc -> areadlink - -> readlink + -> careadlinkat + -> allocator + -> readlink -> canonicalize-lgpl -> malloca -> readlink --- modules/relocatable-prog-wrapper.orig Sat Apr 9 18:02:24 2011 +++ modules/relocatable-prog-wrapper Sat Apr 9 18:01:47 2011 @@ -10,6 +10,10 @@ lib/progreloc.c lib/areadlink.h lib/areadlink.c +lib/careadlinkat.h +lib/careadlinkat.c +lib/allocator.h +lib/allocator.c lib/readlink.c lib/canonicalize-lgpl.c lib/malloca.h --- build-aux/install-reloc.orig Sat Apr 9 18:10:49 2011 +++ build-aux/install-reloc Sat Apr 9 18:10:30 2011 @@ -156,6 +156,8 @@ "$srcdir"/progname.c \ "$srcdir"/progreloc.c \ "$srcdir"/areadlink.c \ + "$srcdir"/careadlinkat.c \ + "$srcdir"/allocator.c \ "$srcdir"/readlink.c \ "$srcdir"/canonicalize-lgpl.c \ "$srcdir"/malloca.c \ @@ -172,6 +174,8 @@ progreloc.o \ xreadlink.o \ areadlink.o \ + careadlinkat.o \ + allocator.o \ canonicalize-lgpl.o \ malloca.o \ relocatable.o \ -- In memoriam Georg Elser <http://en.wikipedia.org/wiki/Georg_Elser>
