fixed: for some reason some back-quotes disappeared
authorceriel <none@none>
Tue, 16 Feb 1988 13:50:24 +0000 (13:50 +0000)
committerceriel <none@none>
Tue, 16 Feb 1988 13:50:24 +0000 (13:50 +0000)
man/Makefile

index 58f0d4c..f8cce12 100644 (file)
@@ -11,10 +11,10 @@ all:
 
 install:
        for i in *.[1-8] ; do \
-               num=expr $$i : '.*\.\([1-8]\)' ; \
+               num=`expr $$i : '.*\.\([1-8]\)'` ; \
                if test -f $(MANDIR)/man$$num/$$i ; \
-                       then cat head $$i > $(MANDIR)/man$$num/em_$$i ; \
-               else cat head $$i $(MANDIR)/man$$num/$$i ; \
+               then cat head $$i > $(MANDIR)/man$$num/em_$$i ; \
+               else cat head $$i $(MANDIR)/man$$num/$$i ; \
                fi ; \
        done