summaryrefslogtreecommitdiff
path: root/security/authenticator/files/patch-build-aux_cargo.sh
diff options
context:
space:
mode:
authorJan Beich <jbeich@FreeBSD.org>2022-04-21 23:04:47 +0000
committerJan Beich <jbeich@FreeBSD.org>2022-09-16 16:56:48 +0000
commit88a566688d921982c863db87684d1bbc75267394 (patch)
tree70bb0c7dff834b098c7a426a79a8bba59ab8272b /security/authenticator/files/patch-build-aux_cargo.sh
parentmath/eclib: upgrade to 20220621 (diff)
security/authenticator: update to 4.1.6
Changes: https://gitlab.gnome.org/World/Authenticator/-/compare/4.0.3...4.1.6 Reported by: Repology
Diffstat (limited to 'security/authenticator/files/patch-build-aux_cargo.sh')
-rw-r--r--security/authenticator/files/patch-build-aux_cargo.sh15
1 files changed, 0 insertions, 15 deletions
diff --git a/security/authenticator/files/patch-build-aux_cargo.sh b/security/authenticator/files/patch-build-aux_cargo.sh
deleted file mode 100644
index 4682a5974221..000000000000
--- a/security/authenticator/files/patch-build-aux_cargo.sh
+++ /dev/null
@@ -1,15 +0,0 @@
---- build-aux/cargo.sh.orig 2021-09-08 15:33:49 UTC
-+++ build-aux/cargo.sh
-@@ -12,10 +12,10 @@ if [ "$BUILDTYPE" = "release" ]; then
- echo "RELEASE MODE"
- cargo build --manifest-path \
- "$MESON_SOURCE_ROOT"/Cargo.toml --release &&
-- cp "$CARGO_TARGET_DIR"/release/"$APP_BIN" "$OUTPUT"
-+ cp "$CARGO_TARGET_DIR"/$CARGO_BUILD_TARGET/release/"$APP_BIN" "$OUTPUT"
- else
- echo "DEBUG MODE"
- cargo build --manifest-path \
- "$MESON_SOURCE_ROOT"/Cargo.toml &&
-- cp "$CARGO_TARGET_DIR"/debug/"$APP_BIN" "$OUTPUT"
-+ cp "$CARGO_TARGET_DIR"/$CARGO_BUILD_TARGET/debug/"$APP_BIN" "$OUTPUT"
- fi