Skip to content

Commit 49b6301

Browse files
committed
make: fix
1 parent c3fe9bf commit 49b6301

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

makefiles/Makefile.archive.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ $(FZ_INSTALL_DIR)$(ARCHIVE_EXT): fz | $(TEMP_FZ_DIR)
207207
ifeq ($(PLATFORM),WIN64)
208208
$(COPY) "$(LIB_DIR)$S$(LIB_PREFIX)flatzinc.$L*" "$(TEMP_FZ_DIR)$S$(FZ_INSTALL_DIR)$Slib"
209209
else
210-
$(COPY) "$(LIB_DIR)*$S$(LIB_PREFIX)flatzinc*.$L*" "$(TEMP_FZ_DIR)$S$(FZ_INSTALL_DIR)$Slib"
210+
$(COPY) $(LIB_DIR)*$S$(LIB_PREFIX)flatzinc*.$L* "$(TEMP_FZ_DIR)$S$(FZ_INSTALL_DIR)$Slib"
211211
endif
212212
$(COPY) $(BIN_DIR)$Sfz$E $(TEMP_FZ_DIR)$S$(FZ_INSTALL_DIR)$Sbin$S$(FZ_EXE)
213213
$(COPY) $(BIN_DIR)$Sparser_main$E $(TEMP_FZ_DIR)$S$(FZ_INSTALL_DIR)$Sbin$Sparser-or-tools$E

makefiles/Makefile.cpp.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@ ifeq ($(PLATFORM),WIN64)
514514
$(COPYREC) /E /Y share "$(DESTDIR)$(prefix)"
515515
else
516516
$(COPYREC) include "$(DESTDIR)$(prefix)$S"
517-
$(COPY) "$(LIB_DIR)*$S$(LIB_PREFIX)ortools*.$L*" "$(DESTDIR)$(prefix)$Slib$S"
517+
$(COPY) $(LIB_DIR)*$S$(LIB_PREFIX)ortools*.$L* "$(DESTDIR)$(prefix)$Slib$S"
518518
$(COPYREC) share "$(DESTDIR)$(prefix)$S"
519519
endif
520520
$(COPY) bin$Sprotoc* "$(DESTDIR)$(prefix)$Sbin"

0 commit comments

Comments
 (0)