Don't die if we encounter a problem registering plug-ins on ia64. Right now,
there's a crash during this phase, and ia64 needs some more debugging tools before it can be fully analyzed. This will allow unattended installs in the meantime. Reported by: marcel Approved by: maintainer (implicit)
This commit is contained in:
parent
7c3625a1b4
commit
6674bf3610
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=91756
2 changed files with 16 additions and 8 deletions
|
@ -98,12 +98,16 @@ post-configure:
|
|||
@${ECHO_CMD} "CC=${CC}" >> \
|
||||
${WRKSRC}/gst-libs/ext/ffmpeg/ffmpeg/config.mak
|
||||
|
||||
post-install:
|
||||
# register plugins
|
||||
@${X11BASE}/bin/gst-register 2>/dev/null
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
post-install:
|
||||
.if ${ARCH} == "ia64"
|
||||
# register plugins
|
||||
@-${X11BASE}/bin/gst-register 2>/dev/null
|
||||
.else
|
||||
@${X11BASE}/bin/gst-register 2>/dev/null
|
||||
.endif
|
||||
|
||||
# Fix build on ia64. This patch breaks other archs, so include it
|
||||
# conditionally
|
||||
.if ${ARCH} == "ia64"
|
||||
|
|
|
@ -98,12 +98,16 @@ post-configure:
|
|||
@${ECHO_CMD} "CC=${CC}" >> \
|
||||
${WRKSRC}/gst-libs/ext/ffmpeg/ffmpeg/config.mak
|
||||
|
||||
post-install:
|
||||
# register plugins
|
||||
@${X11BASE}/bin/gst-register 2>/dev/null
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
post-install:
|
||||
.if ${ARCH} == "ia64"
|
||||
# register plugins
|
||||
@-${X11BASE}/bin/gst-register 2>/dev/null
|
||||
.else
|
||||
@${X11BASE}/bin/gst-register 2>/dev/null
|
||||
.endif
|
||||
|
||||
# Fix build on ia64. This patch breaks other archs, so include it
|
||||
# conditionally
|
||||
.if ${ARCH} == "ia64"
|
||||
|
|
Loading…
Reference in a new issue