[hackers] [libixp] Fix installation broken 2 commits prior. || Kris Maglione

From: <hg_AT_suckless.org>
Date: Mon, 24 May 2010 17:02:26 +0000 (UTC)

changeset: 120:62ac112f62c3
tag: tip
user: Kris Maglione <kris_AT_suckless.org>
date: Mon May 24 13:02:14 2010 -0400
files: mk/common.mk
description:
Fix installation broken 2 commits prior.

diff -r 0946163ab7a0 -r 62ac112f62c3 mk/common.mk
--- a/mk/common.mk Mon May 24 08:47:49 2010 -0400
+++ b/mk/common.mk Mon May 24 13:02:14 2010 -0400
@@ -6,16 +6,16 @@
 DOCDIR = $(DOC)
 simpleinstall:
         for f in $(DOCS); do \
- $(INSTALL) 0644 $$f $(DOCDIR)/$$f; \
+ $(INSTALL) 0644 $$f $(DOCDIR) $$f; \
         done
         for f in $(TEXT); do \
- $(INSTALL) 0644 $$f $(DIR)/$$f; \
+ $(INSTALL) 0644 $$f $(DIR) $$f; \
         done
         for f in $(BINARY); do \
- $(INSTALL) -b 0644 $$f $(DIR)/$$f; \
+ $(INSTALL) -b 0644 $$f $(DIR) $$f; \
         done
         for f in $(EXECS); do \
- $(INSTALL) -b 0755 $$f $(DIR)/$$f; \
+ $(INSTALL) -b 0755 $$f $(DIR) $$f; \
         done
 
 cleandep:
Received on Mon May 24 2010 - 17:02:26 UTC

This archive was generated by hypermail 2.2.0 : Mon May 24 2010 - 17:12:04 UTC