Skip to content

Commit

Permalink
Add missing .h suffix to build/Makefile.in
Browse files Browse the repository at this point in the history
This was making compiling the JIT fail on NetBSD since
src/jit/core_templates.h was never getting compiled.

Fixes #917
  • Loading branch information
Kaiepi committed Jul 27, 2018
1 parent 41108cd commit ecff5b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/Makefile.in
Expand Up @@ -489,7 +489,7 @@ DYNASM = $(MINILUA) 3rdparty/dynasm/dynasm.lua
DYNASM_SCRIPTS = 3rdparty/dynasm/dynasm.lua 3rdparty/dynasm/dasm_x86.lua
DYNASM_HEADERS = 3rdparty/dynasm/dasm_proto.h 3rdparty/dynasm/dasm_x86.h

.SUFFIXES: .c @obj@ .i @asm@ .dasc .expr .tile
.SUFFIXES: .c @obj@ .i @asm@ .dasc .expr .tile .h

all: moar@exe@ pkgconfig/moar.pc

Expand Down

0 comments on commit ecff5b4

Please sign in to comment.