From ef587a2566ff9ab4e5e1e50a1b6fd9bf3caaed51 Mon Sep 17 00:00:00 2001 From: Maciej Wieczor-Retman Date: Thu, 26 Feb 2026 07:53:04 +0100 Subject: [PATCH] docs: Fix issue #190 - no cp -u on MacOS prevents building Use cp without -u to generate the documentation as the -u option doesn't have to be present on other POSIX platforms and breaks builing the project on MacOS. Signed-off-by: Maciej Wieczor-Retman --- doc/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/Makefile.in b/doc/Makefile.in index a6128d6e9..8fdfdeb69 100644 --- a/doc/Makefile.in +++ b/doc/Makefile.in @@ -91,7 +91,7 @@ htmltarget=html/nasm00.html html: $(HTMLAUX) $(MKDIR_P) html - for f in $(HTMLAUX); do $(CP_UF) "$(srcdir)/$$f" html/; done + for f in $(HTMLAUX); do $(CP_F) "$(srcdir)/$$f" html/; done $(MAKE) $(htmltarget) RDSRC = $(RUNPERL) $(srcdir)/rdsrc.pl -I$(srcdir) -M$(@F).dep