Date: Sat, 23 Feb 2019 13:30:56 +0000 (UTC) From: Mark Felder <feld@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r493672 - head/multimedia/plexmediaserver Message-ID: <201902231330.x1NDUuto038088@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: feld Date: Sat Feb 23 13:30:55 2019 New Revision: 493672 URL: https://svnweb.freebsd.org/changeset/ports/493672 Log: Ensure we only attempt to strip files Modified: head/multimedia/plexmediaserver/Makefile Modified: head/multimedia/plexmediaserver/Makefile ============================================================================== --- head/multimedia/plexmediaserver/Makefile Sat Feb 23 13:01:02 2019 (r493671) +++ head/multimedia/plexmediaserver/Makefile Sat Feb 23 13:30:55 2019 (r493672) @@ -45,9 +45,9 @@ RUN_DEPENDS+= ${LOCALBASE}/lib/compat/libstdc++.so.6:m post-patch: # binaries don't come pre-stripped - ${FIND} ${WRKSRC}/Resources -name '*.so' -exec ${STRIP_CMD} {} \+ - ${FIND} ${WRKSRC} ${WRKSRC}/Resources -name 'Plex*' -depth 1 -exec ${STRIP_CMD} {} \+ - ${FIND} ${WRKSRC} -depth 1 -name 'lib*' -exec ${STRIP_CMD} {} \+ + ${FIND} ${WRKSRC}/Resources -type f -name '*.so' -exec ${STRIP_CMD} {} \+ + ${FIND} ${WRKSRC} ${WRKSRC}/Resources -type f -name 'Plex*' -depth 1 -exec ${STRIP_CMD} {} \+ + ${FIND} ${WRKSRC} -depth 1 -type f -name 'lib*' -exec ${STRIP_CMD} {} \+ ${RM} ${WRKSRC}/start.sh ${WRKSRC}/Resources/start.sh # Older verisons of Plex we have to create a symlink # Newer versions of Plex ship a duplicate file; we'll just symlink
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201902231330.x1NDUuto038088>