Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 26 Sep 2021 13:39:53 +0000
From:      bugzilla-noreply@freebsd.org
To:        ports-bugs@FreeBSD.org
Subject:   [Bug 242345] audio/logitechmediaserver : Update to version 8.0.0, 8.1.0
Message-ID:  <bug-242345-7788-tl47UEyXST@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-242345-7788@https.bugs.freebsd.org/bugzilla/>
References:  <bug-242345-7788@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D242345

--- Comment #20 from Hans Soonieus <hans@soonieus.nl> ---
(In reply to David Z. from comment #19)

Hello David,

This seems to be a warning specific to poudriere. If the build completes
without error than the arch determination works because if it didn't then t=
he
build would fail with an error like this :

cd:
/usr/home/hans/logitechmediaserver-8.2.1/work/slimserver-vendor-1a6dc71/CPA=
N/build/arch/5.32/nonesense:
No such file or directory
*** Error code 2

Stop.
make[1]: stopped in /usr/home/hans/logitechmediaserver-8.2.1
*** Error code 1

Stop.
make: stopped in /usr/home/hans/logitechmediaserver-8.2.1


In Makefile line 87 and 88 the perl archname is determined and put in a
variable ARCHNAME which is later (from line 102) used to copy files from the
slimserver-vendor work directory to the staging directory.

Originally this was done like this :

.if ${ARCH} =3D=3D "i386"
ARCHNAME=3D       i386-freebsd-thread-multi-64int
PLIST_SUB+=3D     I386_ONLY=3D""
.else
PLIST_SUB+=3D     I386_ONLY=3D"@comment "
.endif

.if ${ARCH} =3D=3D "amd64"
ARCHNAME=3D       amd64-freebsd-thread-multi
PLIST_SUB+=3D     AMD64_ONLY=3D""
.else
PLIST_SUB+=3D     AMD64_ONLY=3D"@comment "
.endif

The PLIST_SUB is no longer necessary so line 87 and 88 could be replaced by=
 :

.if ${ARCH} =3D=3D "i386"
ARCHNAME=3D       i386-freebsd-thread-multi-64int
.endif

.if ${ARCH} =3D=3D "amd64"
ARCHNAME=3D       amd64-freebsd-thread-multi
.endif

--=20
You are receiving this mail because:
You are the assignee for the bug.=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-242345-7788-tl47UEyXST>