fixed: for some reason some back-quotes disappeared
This commit is contained in:
parent
5d861a3399
commit
3e01918c57
|
@ -11,10 +11,10 @@ all:
|
||||||
|
|
||||||
install:
|
install:
|
||||||
for i in *.[1-8] ; do \
|
for i in *.[1-8] ; do \
|
||||||
num=expr $$i : '.*\.\([1-8]\)' ; \
|
num=`expr $$i : '.*\.\([1-8]\)'` ; \
|
||||||
if test -f $(MANDIR)/man$$num/$$i ; \
|
if test -f $(MANDIR)/man$$num/$$i ; \
|
||||||
then cat head $$i > $(MANDIR)/man$$num/em_$$i ; \
|
then cat head $$i > $(MANDIR)/man$$num/em_$$i ; \
|
||||||
else cat head $$i $(MANDIR)/man$$num/$$i ; \
|
else cat head $$i > $(MANDIR)/man$$num/$$i ; \
|
||||||
fi ; \
|
fi ; \
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue