]> Git Repo - uclibc-ng.git/commitdiff
Geoffrey Espin noticed a $ that should have been a double $$
authorEric Andersen <[email protected]>
Fri, 15 Feb 2002 04:24:57 +0000 (04:24 -0000)
committerEric Andersen <[email protected]>
Fri, 15 Feb 2002 04:24:57 +0000 (04:24 -0000)
since Make make eats $'s.

Makefile

index 1de1eab3863bd8e81a9739a22079f4822c508ddf..296135eabdfe1262440d45b899b1369fa3efcbbb 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
This page took 0.025702 seconds and 4 git commands to generate.