From: John Darrington Date: Tue, 27 Mar 2007 09:16:57 +0000 (+0000) Subject: Fix typo which cause the binary not to depend upon any libraries X-Git-Tag: v0.6.0~517 X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7693a37f77880e38d26af908cdb21710d631ad5a;p=pspp-builds.git Fix typo which cause the binary not to depend upon any libraries --- diff --git a/src/ui/terminal/automake.mk b/src/ui/terminal/automake.mk index fd426acd..dfc52454 100644 --- a/src/ui/terminal/automake.mk +++ b/src/ui/terminal/automake.mk @@ -18,7 +18,7 @@ bin_PROGRAMS += src/ui/terminal/pspp src_ui_terminal_pspp_SOURCES = -src_ui_terminal_pspp_LDFLAGS = \ +src_ui_terminal_pspp_LDADD = \ src/ui/terminal/libui.a \ src/language/liblanguage.a \ src/output/charts/libcharts.a \ @@ -38,5 +38,5 @@ src_ui_terminal_pspp_LDFLAGS = \ if RELOCATABLE_VIA_LD -src_ui_terminal_pspp_LDFLAGS += `$(RELOCATABLE_LDFLAGS) $(bindir)` +src_ui_terminal_pspp_LDFLAGS = `$(RELOCATABLE_LDFLAGS) $(bindir)` endif