diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-02-15 04:24:57 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-02-15 04:24:57 +0000 |
commit | 8841a5a7741572a68d44057ab002f839b039bc93 (patch) | |
tree | 6ced838ede769a287db34181a46af1da52a8a44f /Makefile | |
parent | 89a480a8435286e84e25457e503112976cb98098 (diff) |
Geoffrey Espin noticed a $ that should have been a double $$
since Make make eats $'s.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |