mirror of
https://github.com/linux-speakup/espeakup.git
synced 2026-08-09 09:19:09 +02:00
fixed makefile
The reference to $(PROGRAM) should have been $<. This is fixed.
This commit is contained in:
parent
c2c1d429db
commit
b76fada0b6
1 changed files with 1 additions and 1 deletions
2
Makefile
2
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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue