Skip to content

Commit

Permalink
make: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Mizux committed Mar 15, 2022
1 parent c3fe9bf commit 49b6301
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion makefiles/Makefile.archive.mk
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ $(FZ_INSTALL_DIR)$(ARCHIVE_EXT): fz | $(TEMP_FZ_DIR)
ifeq ($(PLATFORM),WIN64)
$(COPY) "$(LIB_DIR)$S$(LIB_PREFIX)flatzinc.$L*" "$(TEMP_FZ_DIR)$S$(FZ_INSTALL_DIR)$Slib"
else
$(COPY) "$(LIB_DIR)*$S$(LIB_PREFIX)flatzinc*.$L*" "$(TEMP_FZ_DIR)$S$(FZ_INSTALL_DIR)$Slib"
$(COPY) $(LIB_DIR)*$S$(LIB_PREFIX)flatzinc*.$L* "$(TEMP_FZ_DIR)$S$(FZ_INSTALL_DIR)$Slib"
endif
$(COPY) $(BIN_DIR)$Sfz$E $(TEMP_FZ_DIR)$S$(FZ_INSTALL_DIR)$Sbin$S$(FZ_EXE)
$(COPY) $(BIN_DIR)$Sparser_main$E $(TEMP_FZ_DIR)$S$(FZ_INSTALL_DIR)$Sbin$Sparser-or-tools$E
Expand Down
2 changes: 1 addition & 1 deletion makefiles/Makefile.cpp.mk
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ ifeq ($(PLATFORM),WIN64)
$(COPYREC) /E /Y share "$(DESTDIR)$(prefix)"
else
$(COPYREC) include "$(DESTDIR)$(prefix)$S"
$(COPY) "$(LIB_DIR)*$S$(LIB_PREFIX)ortools*.$L*" "$(DESTDIR)$(prefix)$Slib$S"
$(COPY) $(LIB_DIR)*$S$(LIB_PREFIX)ortools*.$L* "$(DESTDIR)$(prefix)$Slib$S"
$(COPYREC) share "$(DESTDIR)$(prefix)$S"
endif
$(COPY) bin$Sprotoc* "$(DESTDIR)$(prefix)$Sbin"
Expand Down

0 comments on commit 49b6301

Please sign in to comment.