mirror of
https://github.com/sol1/rustguac.git
synced 2026-09-10 01:26:06 +00:00
Fix debian/rules: move DEB_HOST_MULTIARCH to file-scope Make variable
The := assignment was inside a recipe (tab-indented) where lines are shell commands, not Make directives. Move to file scope with ?= so dpkg-buildpackage can override, and Make expands it in recipe lines. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Vendored
+2
-1
@@ -2,6 +2,8 @@
|
||||
|
||||
export DH_VERBOSE = 1
|
||||
|
||||
DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
|
||||
|
||||
%:
|
||||
dh $@
|
||||
|
||||
@@ -35,7 +37,6 @@ override_dh_auto_install:
|
||||
cp -a debian/staging/opt/rustguac/lib/*.so* debian/rustguac/opt/rustguac/lib/
|
||||
|
||||
# FreeRDP plugin for RDPDR/RDPSND channels (drive redirection, audio, printing)
|
||||
DEB_HOST_MULTIARCH := $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
|
||||
install -d debian/rustguac/usr/lib/$(DEB_HOST_MULTIARCH)/freerdp3
|
||||
cp -a debian/staging/usr/lib/$(DEB_HOST_MULTIARCH)/freerdp3/*.so* debian/rustguac/usr/lib/$(DEB_HOST_MULTIARCH)/freerdp3/ 2>/dev/null || true
|
||||
|
||||
|
||||
Reference in New Issue
Block a user