summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2017-04-06 22:42:44 -0700
committerH. Peter Anvin <hpa@zytor.com>2017-04-06 22:42:44 -0700
commit3a864c167073d09308a190c3da8115b8c7bea819 (patch)
treea88ab71cd3d3d4b68191f650dede39a03211895d /Makefile.in
parentbc3b010954f5f566063eec8d3fb3428e8fdb81d1 (diff)
downloadnasm-3a864c167073d09308a190c3da8115b8c7bea819.tar.gz
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>
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index 0a8cd498..0dba7481 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -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"` ; \