This is the mail archive of the libc-ports@sources.redhat.com mailing list for the libc-ports project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Broken reference to ldd-rewrite.sed (mips64).


In sysdeps/unix/sysv/linux/mips/mips64/configure, the line

  ldd_rewrite_script=$dest/ldd-rewrite.sed

is wrong, because this script is referenced out of the elf/
subdirectory.The build breaks, because sed can't find the file:

  ../libc/ports/sysdeps/.../mips64/ldd-rewrite.sed

But of course, the file exists and the correct reference is:

  ../ports/sysdeps/.../mips64/ldd-rewrite.sed

In the main tree, the various configure scripts just use the relative
path ../sysdeps/... when setting this variable. Not sure how to fix
this. Alternatives:

  # works if you call ports/ something else, but would you?
  ldd_rewrite_script=../$dest/ldd-rewrite.sed

  # follows how it's done in the main libc tree, plus the /ports
  ldd_rewrite_script=../ports/sysdeps/[...snip...]/ldd-rewrite.sed




Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]