]> git.ipfire.org Git - ipfire-2.x.git/commitdiff
rust: Skip the build step on all packages
authorMichael Tremer <michael.tremer@ipfire.org>
Thu, 16 Jul 2026 12:17:04 +0000 (12:17 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Thu, 16 Jul 2026 12:17:04 +0000 (12:17 +0000)
Running "cargo build" on the crates does not make a lot of sense for us
as none of the built files are neither needed nor installed. We only
build them to confirm that the crate itself builds.

In order to speed up the entire build process, this patch removes the
build stage from all crates so that they will only be extracted and
installed.

Packages that actually create any binaries will still need to call the
build stage and are not touched.

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
141 files changed:
lfs/rust-Inflector
lfs/rust-adler2
lfs/rust-aho-corasick
lfs/rust-aliasable
lfs/rust-allocator-api2
lfs/rust-anstream
lfs/rust-anstyle
lfs/rust-anstyle-parse
lfs/rust-anstyle-query
lfs/rust-anstyle-wincon
lfs/rust-anyhow
lfs/rust-asn1
lfs/rust-asn1_derive
lfs/rust-auditable-serde
lfs/rust-autocfg
lfs/rust-base64
lfs/rust-bitflags
lfs/rust-cfg-if
lfs/rust-chrono
lfs/rust-clap
lfs/rust-clap_builder
lfs/rust-clap_lex
lfs/rust-colorchoice
lfs/rust-crc32fast
lfs/rust-displaydoc
lfs/rust-equivalent
lfs/rust-errno
lfs/rust-fastrand
lfs/rust-flate2
lfs/rust-foldhash
lfs/rust-form_urlencoded
lfs/rust-getrandom
lfs/rust-hashbrown
lfs/rust-heck
lfs/rust-humantime
lfs/rust-iana-time-zone
lfs/rust-icu_collections
lfs/rust-icu_locale_core
lfs/rust-icu_normalizer
lfs/rust-icu_normalizer_data
lfs/rust-icu_properties
lfs/rust-icu_properties_data
lfs/rust-icu_provider
lfs/rust-id-arena
lfs/rust-idna
lfs/rust-idna_adapter
lfs/rust-indexmap
lfs/rust-indoc-0.3.6
lfs/rust-indoc-impl-0.3.6
lfs/rust-instant
lfs/rust-is_terminal_polyfill
lfs/rust-itoa
lfs/rust-lazy-static
lfs/rust-leb128fmt
lfs/rust-libc
lfs/rust-linux-raw-sys
lfs/rust-litemap
lfs/rust-lock_api
lfs/rust-log
lfs/rust-memchr
lfs/rust-miniz_oxide
lfs/rust-num-integer
lfs/rust-num-traits
lfs/rust-once_cell
lfs/rust-once_cell_polyfill
lfs/rust-ouroboros
lfs/rust-ouroboros_macro
lfs/rust-parking_lot
lfs/rust-parking_lot_core
lfs/rust-paste-0.1.18
lfs/rust-paste-impl
lfs/rust-pem
lfs/rust-percent-encoding
lfs/rust-potential_utf
lfs/rust-prettyplease
lfs/rust-proc-macro-error
lfs/rust-proc-macro-error-attr
lfs/rust-proc-macro-hack
lfs/rust-proc-macro2
lfs/rust-pyo3
lfs/rust-pyo3-build-config
lfs/rust-pyo3-macros
lfs/rust-pyo3-macros-backend
lfs/rust-quote
lfs/rust-r-efi
lfs/rust-regex
lfs/rust-regex-syntax
lfs/rust-rustix
lfs/rust-ryu
lfs/rust-scopeguard
lfs/rust-semver
lfs/rust-serde
lfs/rust-serde_core
lfs/rust-serde_derive
lfs/rust-serde_json
lfs/rust-serde_spanned
lfs/rust-simd-adler32
lfs/rust-smallvec
lfs/rust-spdx
lfs/rust-stable_deref_trait
lfs/rust-strsim
lfs/rust-syn
lfs/rust-syn-1.0.109
lfs/rust-synstructure
lfs/rust-tempfile
lfs/rust-time
lfs/rust-tinystr
lfs/rust-toml
lfs/rust-toml_datetime
lfs/rust-toml_edit
lfs/rust-topological-sort
lfs/rust-unicode-ident
lfs/rust-unicode-xid
lfs/rust-unindent
lfs/rust-url
lfs/rust-utf16_iter
lfs/rust-utf8_iter
lfs/rust-utf8parse
lfs/rust-version-check
lfs/rust-wasip2
lfs/rust-wasm-encoder
lfs/rust-wasm-metadata
lfs/rust-wasmparser
lfs/rust-windows-link
lfs/rust-windows-sys
lfs/rust-winnow
lfs/rust-wit-bindgen
lfs/rust-wit-bindgen-core
lfs/rust-wit-bindgen-rust
lfs/rust-wit-bindgen-rust-macro
lfs/rust-wit-component
lfs/rust-wit-parser
lfs/rust-write16
lfs/rust-writeable
lfs/rust-yoke
lfs/rust-yoke-derive
lfs/rust-zerofrom
lfs/rust-zerofrom-derive
lfs/rust-zerotrie
lfs/rust-zerovec
lfs/rust-zerovec-derive

index eb8a3fa5bc026870932f139034797424bd0cf214..7a39aa80f9c0f961f6c7c16986451571c3a60eb6 100644 (file)
@@ -74,7 +74,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @$(PREBUILD)
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 88b8a57747eeaae7a61919fd5a27419f94c8c786..08664a3c42d027063977b723bb599095543b7263 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 86c00b870f4d1c1ec5ddd9a78db4445bf41dcaf0..184d997452163535478b35855ffdbbb89b8f3143 100644 (file)
@@ -76,7 +76,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @$(PREBUILD)
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index fbb4872880e72067d184ec72db194e1d58c1a306..6a18d0d54799bce58ac0db37ca77e6ef266e858b 100644 (file)
@@ -74,7 +74,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @$(PREBUILD)
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index b9ed57799ace03685f11dc065fdb867a6a7e1029..28aadd450c2e4571eb233f7ab50ef1d2f3257ca3 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 380b4ef139567726c6322a60ed1eeed1266c1137..80897f104eb987f0f8a6a8a4d454c65e5407d76e 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index b129450d57250de7c1a632e1462918ce75018642..219554d4aeadc97b643b0127dd7296cebef8db07 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 14db664b7dc69450a449e2b2bdafe75f3c05ae79..f4dc57b8791284a3f15f892a62a5dc934f4c113f 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 182960576242a89c24a8b05b63a0c1ee9fef2e67..980fa987ad32adf23ce3470e2324238a6b0d28d4 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 25c3b1bc38e78487188e2fb297a10dc520891248..f9acc3739da7202cf8444091240e3495e2bf819a 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index d0bc9398cffc1d233c3b69905f9fefecfae84a17..1a0e9cd8c75ded29a7a3caf871aa1ddb80bc4ab6 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index d6781aa86a997f5f21104e95fe1b8ee8dc78929c..1874f82720edbdf04a368f25ac8abede0c8fd376 100644 (file)
@@ -79,7 +79,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        fi; \
 
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index f43413695eddd183f7bdb0f43814bb4818dea9e1..dc022fcfd56192ec32e2cc63bfaacb960dcfca59 100644 (file)
@@ -79,7 +79,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        fi; \
 
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 666ca85ca445f975e5a8f83051c5bcbb18a05723..caf46eff9a01f6cdfa83699a5ada8c42e07854fb 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 453d005fccf87c5063eeda3b9ceb5a4dc6f8d38b..eb8ef2f3959e3c466aa8980c1319d1df2c6965dc 100644 (file)
@@ -79,7 +79,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        fi; \
 
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 65838bd368a94d471dc98423c2e5f3db8ae7c152..7c063fe071faedf76eff297e87d8fc4619525300 100644 (file)
@@ -79,7 +79,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        fi; \
 
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 2c273d9aa6608ed51440a731b5e961ccfde6cac4..7e49607eb611aae10757434efc9355ff0c4e2625 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index df624d6ec8743343d86f00b1467783d9a516419d..70012fdd0b36460b958036197c19a8f62120386d 100644 (file)
@@ -74,7 +74,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @$(PREBUILD)
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD) --no-default-features
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index fbebbf8e1c0f22f704d99e8c5d6b96f57619bcd6..b68289b6fb2dc871dc5889d99fce0475df4626b7 100644 (file)
@@ -80,7 +80,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        fi; \
 
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index ecfc69ed016396af797af7c0a3650ad81f7e406f..d5666d3547fc39ebfa064f9741c905a1ca390856 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index ad8e8a7764fc96160c18adcf13e07716e0a1be7a..c04483123cb4578edcdfbba227dab1fe1d26c0f4 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 2033b9a42c7754b39f4748759134dba5a3bff16b..055731f8a7d1ee957fd27485f1a03540ad574da1 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index c3927648e378b1664fd43c8ffef82f0a7d539dfa..98ce585057e05f1d5863ba7fa82752a3fe2e2e94 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 0ba9acd7e0922c2410a3d6e21c57dc9c5a76802e..19dc43661d2e228bade59965660b9111eb308c33 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 3ec1af5482ed9b9beeb31baa65a9891ba0dc2259..5887a7c2128ba710f0d9a3182c6c23603c0d20d2 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index f6c686d64f471c09a63ec79853a9d4a6a21b9c36..c5da4e7cefc8744a37d3d120ca09d9fef47db6ed 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 2a9983c7caaea07d00c084e3ddaf663d7d3f6985..eb714f7beae148585b805174838e719e415eeaf5 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index dbe1391b5ee8cf94510ac3d552387d5d8c3195ed..fc12e1cefd58b5174627f9da04daa42b488966de 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 966c603f83f2e4e3ce8b377441af07cd1468abf9..dd78a87df8d4f847db2b2a614597df15cb5302c2 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 875367606f00aeeecf7504fd04d2d0cd60cf6e19..3aa7903506c6d5c7c8f8c002c19720f41df9528b 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 55f0a21bc370d80181c4fa2f8644bc1e6aa0ff88..1806b40ecd1ba12f9647f2104d7a947ade0e3ce2 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index b4bd1c118dda03f808b4af64e464b12d46c1bf4b..f8a3fafda2fa588ebff2305afe7d031ce46d485d 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index cfc0291a8d5df091e421422126a7759091b56dd3..eb87e54b082681e3fb8d56fd42e7339322e53f3e 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index bc184be845ed8003fb1f0bbd6d5e9d9a807befb9..6b36c08ffdec28d0ee9f6418f0b5e957fa6b187b 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 260c3e198d494c10a1fd9f69395310c1ccf7bd5e..fb196bb4502fcc2544d9a4a32fc7503fdef687c0 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index dc6778ee49d79afcfacd3f1fbb884db5ee33b96b..5111eed5654f1d50921fb6c244436b24f73370e8 100644 (file)
@@ -80,7 +80,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        fi; \
 
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 48c601f9fea2e206beb01c61ca27065a88665087..57672885dc72c29c9f892b3f3c2cf46ff9b60d7f 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 1dfadc6afdfed572e3cac6804d77b44077bf6f4d..524740f4102bd84c67032371dd42d32210431f1e 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 08b1f76ac4102405524419ed45064f1df1904bb5..f24c621cfbcb5173f6e76897cbd0d89e1f436994 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index f22d64971b342e1a85d312e3ebdc96d56de5bdb8..9c5dd96b526d5775b2e57beb6a885ee8456f35f3 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 2eb39fd2a6ea4ab3d366f60ee6e5cf907d777346..5ab49087d3404813d01f6c354b390b2b0bcd68aa 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index ceacda9c1aa8f7850a758af3594dc500c85b63bf..49b424006776f48e334904019f68b17e5c15c7a5 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index eb934b66d60bb8f48b3c10ccf7ef9524316ed922..e819f6476f50a83592a0290407d783966568a081 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 223dee3fa85ae82957dbeeae98888ea291994877..009ef494d4449f0b62603df4761a0adc49418666 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 6b2260925b71a537ea7301957deb38d81c224e00..56618c6e59451565edb58b35537fad7e159d0a81 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 9661140c002bcd7b8026cc779149e2037c4ed31a..b76b59d8fd5654f1f798bd83b4a0bc2dd24058c7 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 974305c9a2986cf8f56f3a1629f84335b6d00f15..b05e2387c4b09dbfeb00ec39368be0d254f9417b 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 20bb7946cf450c55d9995a1564416ecf9fd74ab3..2f4bb7c1e88d965eeee7bc9cead502183d3a5c4b 100644 (file)
@@ -79,7 +79,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        fi; \
 
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 3dbf6dd95ac617b72664d5c69b48eae6fafa7291..93cf49aef344ebd59713c996fd64a3007385fde8 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 7e0e14872ed9ce8727e15f496aa1a1b65bba5e8d..a4854b494bc6f7e6e50b097412f0c6a7f7b1a076 100644 (file)
@@ -79,7 +79,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        fi; \
 
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index fc845c357695f1697de27ca4b8979d9b4936346f..61565640d8f85d47d18305078a5ad25ae4bb7dc8 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 162c94474fc94a6f506f5d95f3167c0934389e3c..ae1839d0acfdc1126fe1773ca77bfb75f8ff8f33 100644 (file)
@@ -79,7 +79,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        fi; \
 
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 92030869f68fea49a3ad5c83b3b7b24de30f7d8a..ac1e7ba9f2f9f6493a1916ebfff2f753c792c783 100644 (file)
@@ -74,7 +74,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @$(PREBUILD)
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 32859257f2922ca9823a28eeaaaf29d40854154f..9f8ebda71f5937ba2df3829ad0218308cfc9601b 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index d87150913f9aa75a326a5db60dfc057a3e6918ee..63aa5281f758acccca113dd3a4430a11a4ee5283 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index e1d68fe849b1f0a114ca05c4210dab94a4e67e21..a90aa35e911c566872264d9fc0fb0596cc063c08 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 42d8beb2e5e7decdb283edbee67730c5a7123394..307b8739621c920241d4bb03a8b8ec3cf790ace7 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 9561a6b6e57f7b3e32090d5dd2bcfdee97baf408..3592cbc575321ecc8a0213f12e73a306e2a7563f 100644 (file)
@@ -79,7 +79,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        fi; \
 
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 9cbcc369aad5a1a667259d38e72787d6aba8aae2..ab673ede75dcb031a2fd9cd7a3fb048c8912e365 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 1da50968db071309081d93dd002176ceb7f0f368..a8b82b2b1b3a371c0e881a28706625694a485a80 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index bf788716dd30add6944ce473fcab25c5c1c3f77b..67e3f383247a516f97023c9a64f31cb233f0a0bf 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index e4e47bb49b34bfe998de15876ce532ccf833ba1b..75f9c32b2e845c481e908208f1316f78015efd98 100644 (file)
@@ -79,7 +79,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        fi; \
 
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 20c9c9b3df6ee18a4b082e8ae587a96ed6f769bc..02e89340140808c5158093d41fdf640de60af2e8 100644 (file)
@@ -79,7 +79,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        fi; \
 
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index f0684f4c53db4e303bcf7f91360f42ad0314c320..fc788586ab7a812938402f6423b0ecc85272a8c4 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 57a202ccf91905e61741251bcd31a4564fe6c5ff..19ffcc8dae2ab42c7096a96c19df661224b6d9c4 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index c603807c546aa3fe12b5a819520e25decc7d2655..ddcba341bd7dcc72b51508ffc9ff41a48f12c78e 100644 (file)
@@ -79,7 +79,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        fi; \
 
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 834bdfd5c328172a81b87669381a8bab1d679c4e..86da4c8c344aba736f6ced0fabe5194637b6352c 100644 (file)
@@ -79,7 +79,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        fi; \
 
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index d50323c91380ecee6d0aa61e9d31a3a89a5a266a..d9a1026bd5157909d14d53a8ed8a6321af4f38a4 100644 (file)
@@ -79,7 +79,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        fi; \
 
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index dde7645b2cdd54a8cef41a7074b6839c9d4a69f0..2d617b09a08b2cf48158333f5ce3d1201bda2b7b 100644 (file)
@@ -80,7 +80,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        fi; \
 
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index c393b8ebc9719834f971a374d50652d03a9d1ff2..09020f1be72a72f6aac88af04c461ec5212711ad 100644 (file)
@@ -79,7 +79,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        fi; \
 
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 1672887be2173bb24b93e94666eab6614b7f2fcb..4856686d2e0e81b92980133fbd4a24cc88297307 100644 (file)
@@ -79,7 +79,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        fi; \
 
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index c57325e56509463e6f0224e030dc593d9afeb062..bc40a0e1d1d87423c0ffe1434d333155e4f36efb 100644 (file)
@@ -79,7 +79,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        fi; \
 
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 6ff605e0abfb3648b7afcd93fcfcbb3189fb4c31..d82cbff436f1493a064caa013aaad3c8e7a70e2f 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index afe5622a9162ffd6e10635dc7039fe03612cd237..115914e6e6c61902a6c9774a40a87d7181397d69 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 330019525fc26a703a899e59c0e4f7eb44aeb4c6..068fcb451daa1ee96397ca14d7f4a579beadae92 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index f50b74a5498b456545e519dfbdec50ff0fccb789..a91ad7dbcff69bf17a0a7054bc55f431304779d6 100644 (file)
@@ -79,7 +79,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        fi; \
 
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 12fa4e2b72a4bcefeabc6d48a8694cbb6d02a7aa..d51fff07098710149bdae7606332d9a7cc5077eb 100644 (file)
@@ -79,7 +79,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        fi; \
 
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 2ec9bb3ecfd66450d285dbd6f12145a5b8be6687..8dbf6b535ba5860f01e91f7fe0035d9bc6a6c522 100644 (file)
@@ -79,7 +79,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        fi; \
 
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index a28890e467711d42ab1599ccf7ce83147213269c..7b9a2f2bf1d979f3c6068bc783907ff56ebd3f1a 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index bea5f698b34cdd327a6584b26c93d33da817d2dd..02b09dce455b03188bc85b9970e4198b3091b692 100644 (file)
@@ -79,7 +79,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        fi; \
 
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index a274c9803e4c88a9b76648061bc3eb1bb4d90b35..70b2b2af9854d4ea6a731f3e66dc402d91524071 100644 (file)
@@ -79,7 +79,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        fi; \
 
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 739389fc57720cf346c7c0d92f700e3ffba6ee13..294909f344b5cfa482352ba46864e580c1a57e07 100644 (file)
@@ -79,7 +79,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        fi; \
 
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index f5c2c428d957f0d64370e505dc8d6d334b3cb4e8..bcbb62cdececea4fa358b31eba07577cea37beab 100644 (file)
@@ -79,7 +79,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        fi; \
 
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index cbdc225dc710252fc68434de6beb58e204d9e1d7..94c54acbf4b8dd31df0fd2cf0f54daf834e07068 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index f0452b2103603ebd6f13ec6bc4418022bc98064e..5333b51bebf2d1316b4e3a058de9fe23daa50604 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index f7c30058a4590a1f9861bab9310e6d9c205c563c..fd66f4673c3673b41a1111e34dd9146d6909f321 100644 (file)
@@ -79,7 +79,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        fi; \
 
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 9cb409f7eb1775b78fc526effa3dd82025364183..46d1b076a0fcf63e9a689f200a702a0d9dc6c4b6 100644 (file)
@@ -79,7 +79,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        fi; \
 
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index e796487bfbfc78b904b449082f93fe3aa732337c..73a647543433647d1fc00b191619f128e139dc49 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 34b09698e6a1a8d4cccf656e8177dd8f1fbf7046..d0f6bfc3697a16aa7ea0bfe0f3ec5d8fba759d32 100644 (file)
@@ -79,7 +79,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        fi; \
 
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 0b0f66e46e9d1144b80bdc493e9bfab3c96d620d..10045af38c901d2c92c87ba3e5aea74c58283f26 100644 (file)
@@ -79,7 +79,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        fi; \
 
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 8227ce5a84097ee25785c999dd17627308c2013c..5a246cdcd5f5109cfb4cfcbefa2352b2cbc25ba4 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index a746c7d128215f6a95c50c3f779efea66f5082ee..e24caf1dbdca17468e6bd9032886d9a19531a466 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index c7fba660a948db2265299e702d31cdeedbe6fb05..4306c85aaf24a0fec7183ff54a863d4c4092dfbb 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 55e733a55680e52f65d8865f926bc492e4dfe355..3728085b3f12b352bd5dfc87cbd45c8f68c9ca1c 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 015bc24015ca746bb491b5c8ce98144c1ad744de..05e062f43223e7d1b06940b310533abb95a84adf 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index a0907ba670dee4674dd10bb86f8f5b0785d2fbc6..0b938f230fdf69de88643fe569898315e0f42e1a 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 44b5820213622cc68e81a83b76a46c52feed5e92..e7bed775c1b5e29cbb9ea67a648a934935201de6 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 054a978932077dfb1ae9f94b4159c0192298a70c..fddfe293f1700421fb78416b329afba37e249abe 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index b67f9e6d27ea9630a16510a67dbb14bcd3d136f3..7c6dbc77286ea1c46e14082e7bfe4d292f5d590a 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 75a887a96319c0e065f1c44d74b8371681b16c92..4587adf0216607234dc55d64ea827de908b1ad22 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 4f09411007eba7306f77726ff2de6418ae223ddd..0daab0be046095b5f96ab01a9c2ae4b0bdd90dca 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 8a93be4524d1fa4287eb6e3c8ac9f76c06c9f487..303e142b59810fef88e78190088550b6c92db459 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 91f58d3c846c621a0251004345bbc13b1eaa723c..32f2c6e99f2abf1e10f67fd8d22194faeb7cfd96 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index b5a94c16f31677a4b65e1bfdf17d9e6a638699bf..9fe2dfade6b0e3a7fcaa028d72fc27e91d2fc896 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index d47a9b1d54d4f30628ad484d8ec8d54619e8a642..835f5adf906572cb2ec54581bacf669de2a02dbf 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 372334cb34408f0579b88c1edb5a0fe0769a244c..5df9de28b24d5f19d4603e747ad70a94f6174ea1 100644 (file)
@@ -80,7 +80,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        fi; \
 
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 3cc88e333cf612172494943c5e345cf2309ae96c..c276e1760da0a18097455ea5e53cd9c581c4e4d1 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 7865dd14d7aedaf3c3ac079abab6e46afb84f030..fa47821fad96f176cb058bece8669cb091d41504 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 45a96c64cfc4522d31d27092ea8457b79ec7bb05..dd7497ac22714a07e92f3178be08dda499e16b13 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 530f4ae377c9d667efc192946ea5171085a18fde..9859cda85be3c0d85599aa57447c0f24e9d0c84c 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 73594181ab3ea1f30ab290e20a807e99e6ad77d1..141972ef4a2a92febf9c8e7907e3b654e94ba164 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index a3708d9eb9670d7291f4111851a82882a9e2441a..17eca3da24c774024b83aee05ac916da0ae16611 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index ef55d69b63344d4667c10e48ec93fd8a7820ac1c..44aa9d6433a047225cf07ce3c99a75ab304dc06d 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index cd7a3f889dd231d3eea4ea7be94ffb869054d3b9..5b69cd3c72fff336a793717361927eb7fb548c32 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 09ccb70260d07f17613b23d401e1d4320f2be716..ab4504b938cbb4f6c9887008f636a15f43cd8200 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index ee41f8efa5037c2454f1532a430b2aafebd7514e..876ddc631d80abfbdfb9054b62bcb8eeafdc1816 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 9068b4aa2797ddf687c1fa9798db99e845b772fd..506f20a3c494afc0e91c2e425af5e9ec0a420215 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 3e172bf8a7a0e087967c48878b124b57f3dd8f4e..cc665419f984e13869d46004611867772700944d 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index c43f3e6fdac8fd402f30a4d70cc02c76f494e003..443a720d955cf6ddf50c58451c95c51594cab9cf 100644 (file)
@@ -74,7 +74,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @$(PREBUILD)
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 4c090c48eb9f5bcf2697ac7d7b5a2f26cab829ec..9f767b75c8d74e4f5d2f4ac5c792252aa2e4cf7a 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 37ba1a9cd14457b2588f22317b3bab3bba0eac5a..e3372abb7ff7ce87744652cdcd7474f729d6a568 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 26a72e71f2e798ca1f999b12532cdbc758724818..f8954204ef30f9b493e00f04bf4ecd1c6a53986f 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 8667d4e0b2c301878a97f1ce3130e9702bfe33a1..2d0432075a09028c6f656d40b972c8299a9fc014 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 188402dd8c0dfe4499bac8efff6fcbd363ea3243..7e3f75ea7e47a48f5944906162d13eda0a5888c7 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 530ce460212ffb565b10bd85cf9fe320273b8d7f..734b6683d3f5d3d6050c2119d1d7d776e32c9d36 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 9b7e70b15af6ea581530ba460df99b7dbb7afa01..220caaa6f71407efbc66cfcf44e2b7f1afe4cd5a 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index bfbb8403114e14d4153d8e8ef1a54072c11fe6a6..92f6579605ebf89c07e2c0846846df8cc624e36a 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 6db43f28ca43810cfa67d72de284e79eaed8e595..3b98e787fc96821af26d71f3e5690bc9e40e10a5 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index b85f17121dc85532283c0d0da6e448387f7cd949..39a52cdce727fb885b6f87650d9009d3bb9ecf85 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 5d5fe8d784e9d835ecfbfdad4aed2bacfde1b55f..50ad9d730ab34cef5d5d3db5dbe4205e37a2edd0 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 345bdb72c2ca61a0d90fd0984d8d8830d5af25aa..7429a9c69c47148c253a10892839719b90e49714 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 2c0b8fe2b99825ae7dd8b5912c03782cf6d1c115..e8a228f8ebeb3b26b2c1030a4f5436f2b3a2910b 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 4d34fe2bf47baa8c40cac2e512cba98c3ba6d4f8..944005fbd7ca93bb9eb5fd5663a976282aea1ae3 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 94351301a5817e237fd34f95ed8bfba65884596c..96607ab9cdf7d9a76d6c8feaca9b5f079e7be30a 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index fadafe50beb1a39058dc23984d6e6a8df117296a..f34c336c944ddc48d14c0328fa44f360f4c5eb9b 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index b8093789eb355082a3cda94921522d897027068f..a6b1cb4c547cf9d3b4aa4c011af0a99a26d8adbb 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index c45b3e09c8fedfbb799b6f66e051b77285246e63..25249d5d425af66f738bd2361a7ddd52fc3cd11e 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 38110b9ddf5503d2401aabf5ef94fd0ff4cb99cf..4b2230854ac74716c3a8cbc27ed826b17e8b21a8 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 9f88d42d9a5d86c4ab2bb09ae58142f83b0f7b23..835be3c4e8147d392d41ed89225d3ec5941a8ad6 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index 1b7e4b8ef315e395ea6df00e54ae657e1d464125..0faedb63906dc466d08096cbb71b6b41a1aaa8b0 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)
index c1d818422c7f5e200b4d39add06aa820e3c0b05e..f1e17c8467d083f7ff85aa0c2925cd7fa1e42c51 100644 (file)
@@ -75,7 +75,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && rm Cargo.toml.orig
        cd $(DIR_APP) && $(CARGO_PREPARE)
-       cd $(DIR_APP) && $(CARGO_BUILD)
        cd $(DIR_APP) && $(CARGO_INSTALL)
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)