From: Eric Andersen Date: Fri, 15 Feb 2002 04:24:57 +0000 (-0000) Subject: Geoffrey Espin noticed a $ that should have been a double $$ X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=8841a5a7741572a68d44057ab002f839b039bc93;p=uclinux-h8%2Fuclibc-ng.git Geoffrey Espin noticed a $ that should have been a double $$ since Make make eats $'s. --- 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