From: ceriel Date: Mon, 14 Oct 1991 09:13:40 +0000 (+0000) Subject: corrected installation mechanism X-Git-Tag: release-5-5~744 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=704bdf8e142317bbebddfcd4f9e4952db74d5996;p=ack.git corrected installation mechanism --- diff --git a/lang/cem/lint/proto.make b/lang/cem/lint/proto.make index fcb8d05d8..dfd0431c4 100644 --- a/lang/cem/lint/proto.make +++ b/lang/cem/lint/proto.make @@ -5,7 +5,7 @@ DIRS = lpass1 lpass1.ansi lpass2 llib all: - for i in $(DIRS) ; do cd $i ; make ; cd .. ; done + for i in $(DIRS) ; do cd $$i ; make ; cd .. ; done install: - for i in $(DIRS) ; do cd $i ; make install ; cd .. ; done + for i in $(DIRS) ; do cd $$i ; make install ; cd .. ; done