]> git.lizzy.rs Git - rust.git/blobdiff - mk/snap.mk
librustc: Don't try to perform the magical
[rust.git] / mk / snap.mk
index 9694c3ec706b88be1cfe46f0c38d8efa8d396de7..a7eb71baf6bea82e4dbb2db9374581a06100cb81 100644 (file)
@@ -1,18 +1,28 @@
+# Copyright 2012 The Rust Project Developers. See the COPYRIGHT
+# file at the top-level directory of this distribution and at
+# http://rust-lang.org/COPYRIGHT.
+#
+# Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
+# http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+# <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
+# option. This file may not be copied, modified, or distributed
+# except according to those terms.
+
 define DEF_SNAP_FOR_STAGE_H
 # $(1) stage
 # $(2) triple
 
 snap-stage$(1)-H-$(2): $$(HSREQ$(1)_H_$(2))
-       $(S)src/etc/make-snapshot.py stage$(1) $(2)
+       $(CFG_PYTHON) $(S)src/etc/make-snapshot.py stage$(1) $(2)
 
 endef
 
-$(foreach host,$(CFG_TARGET_TRIPLES),                                          \
+$(foreach host,$(CFG_HOST),                                            \
  $(eval $(foreach stage,1 2 3,                                                         \
   $(eval $(call DEF_SNAP_FOR_STAGE_H,$(stage),$(host))))))
 
-snap-stage1: snap-stage1-H-$(CFG_HOST_TRIPLE)
+snap-stage1: snap-stage1-H-$(CFG_BUILD)
 
-snap-stage2: snap-stage2-H-$(CFG_HOST_TRIPLE)
+snap-stage2: snap-stage2-H-$(CFG_BUILD)
 
-snap-stage3: snap-stage3-H-$(CFG_HOST_TRIPLE)
\ No newline at end of file
+snap-stage3: snap-stage3-H-$(CFG_BUILD)