From 704bdf8e142317bbebddfcd4f9e4952db74d5996 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 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 -- 2.34.1