From 7db3dcbdf6c531c6756d360157e9ff504a22a3d6 Mon Sep 17 00:00:00 2001 From: Ansa89 Date: Wed, 25 Jun 2014 09:53:05 +0200 Subject: [PATCH] Makefile: fix typo --- build/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Makefile b/build/Makefile index cfc4f24..b8328ad 100644 --- a/build/Makefile +++ b/build/Makefile @@ -91,7 +91,7 @@ install: toxic @mkdir -p $(DESTDIR)/$(BINDIR) @mkdir -p $(DESTDIR)/$(DATADIR) install -m 0755 toxic $(DESTDIR)/$(BINDIR) - install -m 0644 $(DATAFILES) $(PREFIX)/$(DATADIR) + install -m 0644 $(DATAFILES) $(DESTDIR)/$(DATADIR) %.o: $(SRC_DIR)/%.c $(CC) $(CFLAGS) -o $*.o -c $(SRC_DIR)/$*.c