From b76fada0b61873bb5228246e2585fea3ca690aba Mon Sep 17 00:00:00 2001 From: William Hubbs Date: Sun, 3 Aug 2008 13:48:13 -0500 Subject: [PATCH] fixed makefile The reference to $(PROGRAM) should have been $<. This is fixed. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e270aca..17115df 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ all: espeakup install: espeakup $(INSTALL) -d $(DESTDIR)$(BINDIR) - $(INSTALL) -m 0755 $(PROGRAM) $(DESTDIR)$(BINDIR) + $(INSTALL) -m 0755 $< $(DESTDIR)$(BINDIR) clean: $(RM) espeakup