mirror of
https://github.com/netwide-assembler/nasm
synced 2026-08-26 16:23:04 -04:00
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 <maciej.wieczor-retman@intel.com>
This commit is contained in:
parent
85cd46de67
commit
ef587a2566
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue