summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2004-12-14 23:53:48 +0000
committerJim Meyering <jim@meyering.net>2004-12-14 23:53:48 +0000
commita9576003337337c34743318b0409c80258f37e00 (patch)
tree9ecd88d28473cabdf97b925e9b2fa25a55c53143 /src
parent0b69561a5355fefba216b9ed86e34126b627c313 (diff)
downloadcoreutils-a9576003337337c34743318b0409c80258f37e00.tar.xz
(__LDADD): Define, so that building `[' on
Solaris still uses the -lgen library that it requires in order to get a definition of eaccess.
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.am2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 01f74ca81..7e4d6e33e 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -39,6 +39,8 @@ mv_LDADD = $(LDADD) $(LIB_EACCESS)
pathchk_LDADD = $(LDADD) $(LIB_EACCESS)
rm_LDADD = $(LDADD) $(LIB_EACCESS)
test_LDADD = $(LDADD) $(LIB_EACCESS)
+# This is for the '[' program. Automake transliterates '[' to '_'.
+__LDADD = $(LDADD) $(LIB_EACCESS)
# for clock_gettime and fdatasync
dd_LDADD = $(LDADD) $(LIB_CLOCK_GETTIME) $(LIB_FDATASYNC)