diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-02-01 07:01:17 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-02-01 07:01:17 +0000 |
commit | 4dd4bdd34d4b0dbbd0d896d8c279a37850995577 (patch) | |
tree | 71ce51ca77b1682d609a290f022ad24e37a9441e /Makefile | |
parent | 202f0c6ae8ad57bce80f163ada6e343436e01c1f (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-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |