Skip to content

Commit

Permalink
build(bugfix):fix asm file do not ar in out-of-tree ffmpeg build
Browse files Browse the repository at this point in the history
  • Loading branch information
xuxin930 committed Dec 24, 2024
1 parent e26f587 commit 99164e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ffmpeg/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,9 @@ else
endif

NASUFFIX = $(subst $(DELIM),.,$(CURDIR))
EXTOBJS = $(NASRCS:=$(NASUFFIX)$(OBJEXT))
EXTOBJS = $(NASRCS:%=$(PREFIX)%$(NASUFFIX)$(OBJEXT))

$(EXTOBJS): %.asm$(NASUFFIX)$(OBJEXT): %.asm
$(EXTOBJS): $(PREFIX)%.asm$(NASUFFIX)$(OBJEXT): %.asm
$(Q) nasm $(NAFLAGS) $< -o $@
$(Q) strip -x $@
endif
Expand Down

0 comments on commit 99164e6

Please sign in to comment.