summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-02-15 04:24:57 +0000
committerEric Andersen <andersen@codepoet.org>2002-02-15 04:24:57 +0000
commit8841a5a7741572a68d44057ab002f839b039bc93 (patch)
tree6ced838ede769a287db34181a46af1da52a8a44f /Makefile
parent89a480a8435286e84e25457e503112976cb98098 (diff)
Geoffrey Espin noticed a $ that should have been a double $$
since Make make eats $'s.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 1de1eab38..296135eab 100644
--- a/Makefile
+++ b/Makefile
@@ -197,7 +197,7 @@ install_dev:
-@for i in `find $(PREFIX)$(DEVEL_PREFIX) -type d` ; do \
chmod -f 755 $$i; chmod -f 644 $$i/*.h; \
done;
- -chown -R `id | sed 's/^uid=\([0-9]*\).*gid=\([0-9]*\).*$/\1.\2/'` $(PREFIX)$(DEVEL_PREFIX)
+ -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 ';'
endif