diff options
author | kwm <kwm@FreeBSD.org> | 2014-05-22 18:20:03 +0800 |
---|---|---|
committer | kwm <kwm@FreeBSD.org> | 2014-05-22 18:20:03 +0800 |
commit | e11b6975a325f951d494dc254301c2eba73327b2 (patch) | |
tree | 934c3cef856d6895ee3d20e2c7aa5c6f3537b211 /graphics/libGL | |
parent | 508afcffd0fa4f54a05be669ef9ee2d9676ff4b6 (diff) | |
download | freebsd-ports-gnome-e11b6975a325f951d494dc254301c2eba73327b2.tar.gz freebsd-ports-gnome-e11b6975a325f951d494dc254301c2eba73327b2.tar.zst freebsd-ports-gnome-e11b6975a325f951d494dc254301c2eba73327b2.zip |
N-i-c-o on #freebsd-fr reported that dri.pc doesn't exist in the stage
directory on ARM. Thus, calling rm(1) on this non-existing file fails.
Passing "-f" to rm(1) fixes the problem.
Move the same commands which are executed in both branches of the "if
(WITH_NEW_XORG)" block, move them outside of it.
Obtained from: xorg-dev repo
Diffstat (limited to 'graphics/libGL')
-rw-r--r-- | graphics/libGL/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/graphics/libGL/Makefile b/graphics/libGL/Makefile index dd6cc33f96f5..bb99ab57157b 100644 --- a/graphics/libGL/Makefile +++ b/graphics/libGL/Makefile @@ -32,18 +32,16 @@ CONFIGURE_ARGS+=--disable-gallium-intel .endif post-install: + ${RM} -f ${STAGEDIR}${PREFIX}/libdata/pkgconfig/dri.pc + ${RM} -rf ${STAGEDIR}${PREFIX}/include/GL/internal .if defined(WITH_NEW_XORG) @${MKDIR} ${STAGEDIR}${PREFIX}/lib/.libGL @${MV} ${STAGEDIR}${PREFIX}/lib/libGL* \ ${STAGEDIR}${PREFIX}/lib/.libGL/ ${RM} ${STAGEDIR}${PREFIX}/lib/libglapi* - ${RM} -f ${STAGEDIR}${PREFIX}/libdata/pkgconfig/dri.pc - ${RM} -rf ${STAGEDIR}${PREFIX}/include/GL/internal .else ${RM} ${STAGEDIR}${PREFIX}/include/GL/glu.h ${RM} ${STAGEDIR}${PREFIX}/include/GL/glu_mangle.h - ${RM} -rf ${STAGEDIR}${PREFIX}/include/GL/internal - ${RM} ${STAGEDIR}${PREFIX}/libdata/pkgconfig/dri.pc .endif .include <bsd.port.mk> |