Skip to content

Commit

Permalink
x86: fix out-of-root builds after 8bddaa2
Browse files Browse the repository at this point in the history
nasm always uses %include paths starting from the directory from where
it's started.
  • Loading branch information
wiiaboo authored and Rodger Combs committed Sep 16, 2017
1 parent 0ce4c19 commit ba6bf6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libass/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ nasm_verbose_ = $(nasm_verbose_$(AM_DEFAULT_VERBOSITY))
nasm_verbose_0 = @echo " NASM " $@;

.asm.lo:
$(nasm_verbose)$(LIBTOOL) $(AM_V_lt) --tag=CC --mode=compile $(AS) $(ASFLAGS) -o $@ $< -prefer-non-pic
$(nasm_verbose)$(LIBTOOL) $(AM_V_lt) --tag=CC --mode=compile $(AS) $(ASFLAGS) -I$(srcdir)/ -o $@ $< -prefer-non-pic

SRC_INTEL = x86/rasterizer.asm x86/blend_bitmaps.asm x86/blur.asm x86/cpuid.asm \
x86/cpuid.h
Expand Down

0 comments on commit ba6bf6b

Please sign in to comment.