From: Bruno Haible Date: Thu, 10 Dec 2009 18:15:51 +0000 (+0100) Subject: pty test: Fix link error. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=039ae97b8ae35a2446c5d62d72b21689c97da7e2;p=pspp pty test: Fix link error. --- diff --git a/ChangeLog b/ChangeLog index 48019d0d84..89af21a152 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2009-12-10 Bruno Haible + + pty test: Fix link error. + * modules/pty-tests (Makefile.am): Add the default LDADD value to + test_pty_LDADD. + 2009-12-07 Simon Josefsson * modules/pty: New file. @@ -8,12 +14,12 @@ * doc/glibc-functions/forkpty.texi: Modified. * doc/glibc-functions/openpty.texi: Modified. -2009-12-09 Bruno Haible +2009-12-10 Bruno Haible Avoid syntax error in C++ mode. * lib/stdio.in.h (rename): Don't use parameter name 'new'. -2009-12-09 Bruno Haible +2009-12-10 Bruno Haible Use sed with option -e. * gnulib-tool (func_version, func_emit_copyright_notice, diff --git a/modules/pty-tests b/modules/pty-tests index 2d8b9c33d0..981ae1846b 100644 --- a/modules/pty-tests +++ b/modules/pty-tests @@ -4,4 +4,4 @@ tests/test-pty.c Makefile.am: TESTS += test-pty check_PROGRAMS += test-pty -test_pty_LDADD = $(PTY_LIB) +test_pty_LDADD = $(LDADD) $(PTY_LIB)