summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-03-11 06:18:52 +0000
committerEric Andersen <andersen@codepoet.org>2002-03-11 06:18:52 +0000
commit7592855f23999132d1df4dcb3040260f082feb28 (patch)
tree0b4725ca89ed90de632c81ff9bb04419ccf718e7 /Makefile
parent0307ade95b4c0d05abc654bdc91f60772f218cd2 (diff)
Allow some failures to simplify building gcc
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 8f277d140..bc86292af 100644
--- a/Makefile
+++ b/Makefile
@@ -232,7 +232,7 @@ install_dev:
install -d $(PREFIX)$(DEVEL_PREFIX)/lib
install -d $(PREFIX)$(DEVEL_PREFIX)/usr/lib
install -d $(PREFIX)$(DEVEL_PREFIX)/include
- install -m 644 lib/*.[ao] $(PREFIX)$(DEVEL_PREFIX)/lib/
+ -install -m 644 lib/*.[ao] $(PREFIX)$(DEVEL_PREFIX)/lib/
tar -chf - 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; \
@@ -240,7 +240,7 @@ install_dev:
-find $(PREFIX)$(DEVEL_PREFIX) -name CVS | xargs rm -rf;
-chown -R `id | sed 's/^uid=\([0-9]*\).*gid=\([0-9]*\).*$$/\1.\2/'` $(PREFIX)$(DEVEL_PREFIX)
ifeq ($(strip $(HAVE_SHARED)),true)
- find lib/ -type l -name '*.so' -exec cp -a {} $(PREFIX)$(DEVEL_PREFIX)/lib ';'
+ -find lib/ -type l -name '*.so' -exec cp -a {} $(PREFIX)$(DEVEL_PREFIX)/lib ';'
endif