blob: 983cd1cf0b59d662b7156b3cce48ce064992bafa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
Makefile: do not execute the rule "all" when executing "install"
signed-off-by: Arnaud Aujon <arnaud.aujon@gmail.com>
===================================================================
--- espeak-1.47.11-source.orig/src/Makefile
+++ espeak-1.47.11-source/src/Makefile
@@ -131,7 +131,7 @@
rm -f $(BIN2_NAME)
rm -f $(LIB_NAME)*
-install: all
+install:
# Create directories
rm -rf $(DESTDIR)$(DATADIR)
$(MKDIR) $(DESTDIR)$(BINDIR)
|