Skip to content

Commit 515f43b

Browse files
committed
makefile: fix potential bug
Copy first dependency, not all of them. Allthough there is a distinction in Makefile between $^ and $<, there's no difference in the case that is fixed as of writing. This commit is just to clearly show a drive-by fix, before the next commit. Signed-off-by: Øyvind Harboe <[email protected]>
1 parent a43406a commit 515f43b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flow/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -743,7 +743,7 @@ $(GDS_MERGED_FILE): $(RESULTS_DIR)/6_final.def $(OBJECTS_DIR)/klayout.lyt $(GDSO
743743
$(RESULTS_DIR)/6_final.v: $(LOG_DIR)/6_report.log
744744

745745
$(GDS_FINAL_FILE): $(GDS_MERGED_FILE)
746-
cp $^ $@
746+
cp $< $@
747747

748748
.PHONY: drc
749749
drc: $(REPORTS_DIR)/6_drc.lyrdb

0 commit comments

Comments
 (0)