summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorPádraig Brady <P@draigBrady.com>2014-09-09 15:50:07 +0100
committerPádraig Brady <P@draigBrady.com>2014-09-10 15:45:42 +0100
commit6f9b01873ee3c9e2be5daedc5b095a44d37a577c (patch)
tree869f9c2471c9040680a6ab5f77336d9bf57e2b1a /configure.ac
parent20f46a2e347a53855b70b47297cd1856741d6265 (diff)
downloadcoreutils-6f9b01873ee3c9e2be5daedc5b095a44d37a577c.tar.xz
build: avoid name transformations on libstdbuf
* src/local.mk (transform): Skip the transformation for libstdbuf since that should not be subject to name clashes, and we need to reference the name directly in LD_PRELOAD etc. * configure.ac: Add a comment on the coupling of pkglibexec_PROGRAMS to $(transform). Issue reported at https://trac.macports.org/ticket/44922 Improved by Nick Bowler
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index e061a0ad5..f45b06e3a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -488,6 +488,8 @@ m4_include([m4/cu-progs.m4])
# Now that we know which programs will actually be built, determine
# which optional helper progs should be compiled.
+# Note it adding to pkglibexec_PROGRAMS, $(transform) in src/local.mk
+# may need to be updated accordingly.
case " $optional_bin_progs " in
*' stdbuf '*) pkglibexec_PROGRAMS='src/libstdbuf.so';;
*) pkglibexec_PROGRAMS='';;