control: tag -1 patch
Attached the minimal patch to fix the paths. wine 1.6.2 uses the old packaging with old paths, where /usr/bin/wine32 and /usr/bin/wine64 point to the arch-specific paths. The merge of the wine-development script, where the wine and wine64 binaries are placed in /usr/lib/wine-development/, missed adapting these paths. btw: Jessie/Testing still has 1.6.2-8. So if we want all changes since then to enter Jessie (including the non-release-critical changes) /someone/ should upload a fixed version until *October 26th which is in 3 days* (or even earlier since it has to be accepted, ...). See https://release.debian.org/jessie/freeze_policy.html. Greets jre
diff --git a/debian/scripts/wine b/debian/scripts/wine index d67a00a..aa3307f 100755 --- a/debian/scripts/wine +++ b/debian/scripts/wine @@ -1,9 +1,9 @@ #!/bin/sh -e name=$(basename $0) -bindir=/usr/lib/$name +bindir=/usr/bin -wine32=$bindir/wine +wine32=$bindir/wine32 wine64=$bindir/wine64 if test -x $wine32 -a "$WINEARCH" != "win64"; then