summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-02-01 07:01:17 +0000
committerEric Andersen <andersen@codepoet.org>2002-02-01 07:01:17 +0000
commit4dd4bdd34d4b0dbbd0d896d8c279a37850995577 (patch)
tree71ce51ca77b1682d609a290f022ad24e37a9441e /Makefile
parent202f0c6ae8ad57bce80f163ada6e343436e01c1f (diff)
Be ever so pedantic and explicitly tell tar to use stdin,
not to just assume it. -Erik
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index e3af07fa2..2e4f96aa6 100644
--- a/Makefile
+++ b/Makefile
@@ -191,7 +191,7 @@ install_dev:
install -d $(PREFIX)$(DEVEL_PREFIX)/usr/lib
install -d $(PREFIX)$(DEVEL_PREFIX)/include
install -m 644 lib/*.[ao] $(PREFIX)$(DEVEL_PREFIX)/lib/
- tar -chO include | tar -xC $(PREFIX)$(DEVEL_PREFIX);
+ tar -chO include | tar -xf - -C $(PREFIX)$(DEVEL_PREFIX);
-@for i in `find $(PREFIX)$(DEVEL_PREFIX) -type d` ; do \
chmod -f 755 $$i; chmod -f 644 $$i/*.h; \
done;