OSDN Git Service

Geoffrey Espin noticed a $ that should have been a double $$
authorEric Andersen <andersen@codepoet.org>
Fri, 15 Feb 2002 04:24:57 +0000 (04:24 -0000)
committerEric Andersen <andersen@codepoet.org>
Fri, 15 Feb 2002 04:24:57 +0000 (04:24 -0000)
since Make make eats $'s.

Makefile

index 1de1eab..296135e 100644 (file)
--- 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