From 1dafdb1c988c05eba7f5927b32790d1f6f699a43 Mon Sep 17 00:00:00 2001 From: ceriel Date: Mon, 14 Oct 1991 09:13:40 +0000 Subject: [PATCH] corrected installation mechanism --- lang/cem/lint/proto.make | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lang/cem/lint/proto.make b/lang/cem/lint/proto.make index fcb8d05d..dfd0431c 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