From: John Darrington Date: Tue, 23 Sep 2008 01:14:51 +0000 (+0800) Subject: Fixed minor build problems. X-Git-Tag: sav-api~870^2~51 X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=29444b52c65173576337c1bf5b0844484766a8ee;p=pspp Fixed minor build problems. Fixed two build problems which crept in when moving to libtool libraries. One manifested itslef when building on a system with ncurses in a non-standard place. The other when building after configured with --enable-debug --- diff --git a/src/ui/terminal/automake.mk b/src/ui/terminal/automake.mk index a93e4b6cb1..988f24d5d3 100644 --- a/src/ui/terminal/automake.mk +++ b/src/ui/terminal/automake.mk @@ -13,7 +13,7 @@ src_ui_terminal_libui_la_SOURCES = \ src/ui/terminal/terminal.c \ src/ui/terminal/terminal.h -src_ui_terminal_libui_a_CFLAGS = -DINSTALLDIR=\"$(bindir)\" $(NCURSES_CFLAGS) +src_ui_terminal_libui_la_CFLAGS = -DINSTALLDIR=\"$(bindir)\" $(NCURSES_CFLAGS) bin_PROGRAMS += src/ui/terminal/pspp @@ -21,6 +21,7 @@ src_ui_terminal_pspp_SOURCES = src_ui_terminal_pspp_LDADD = \ src/ui/terminal/libui.la \ + src/ui/libuicommon.la \ src/libpspp.la \ src/libpspp-core.la \ $(NCURSES_LIBS) \