Makefile.in: missing \ broke "make install_rdf"

A missing backslash broke "make install_rdf", and therefore broke the
build robot.

Signed-off-by: H. Peter Anvin <hpa@zytor.com>
This commit is contained in:
H. Peter Anvin 2017-04-06 22:42:44 -07:00
parent bc3b010954
commit 3a864c1670

View file

@ -385,7 +385,7 @@ cscope:
rdf_install install_rdf install_rdoff:
$(MKDIR) -p $(INSTALLROOT)$(bindir)
for f in $(RDFPROGS); do \
$(INSTALL_PROGRAM) "$$f" '$(INSTALLROOT)$(bindir)'/ ;
$(INSTALL_PROGRAM) "$$f" '$(INSTALLROOT)$(bindir)'/ ; \
done
for f in $(RDF2BINLINKS); do \
$(RM_F) '$(INSTALLROOT)$(bindir)'/`basename "$$f"` ; \