Skip to content

Commit 7116b98

Browse files
committed
Use variable instead of hardcoded path
1 parent 7261b1c commit 7116b98

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/build/Makefile.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -468,8 +468,8 @@ $(PMC_DIR)/pmc_serializationcontext.h: $(PMC_DIR)/serializationcontext.c
468468
$(PMC_DIR)/$(GROUP).c: $(PMC_OBJECTS)
469469
$(PMC2C) --no-lines --library $(PMC_DIR)/$(GROUP) --c $(PMC_SOURCES)
470470

471-
$(DYNPMC): $(PMC_OBJECTS) src/pmc/$(GROUP)$(O)
472-
$(LD) @ld_out@$(DYNPMC) src/pmc/$(GROUP)$(O) $(PMC_OBJECTS) $(LINKARGS)
471+
$(PMC_DIR)/$(DYNPMC): $(PMC_OBJECTS) $(PMC_DIR)/$(GROUP)$(O)
472+
$(LD) @ld_out@$(PMC_DIR)/$(DYNPMC) $(PMC_DIR)/$(GROUP)$(O) $(PMC_OBJECTS) $(LINKARGS)
473473

474474

475475

0 commit comments

Comments
 (0)