summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntoine Brodin <antoine@FreeBSD.org>2013-12-04 17:48:26 +0000
committerAntoine Brodin <antoine@FreeBSD.org>2013-12-04 17:48:26 +0000
commitc617959ef58a474d834596517f12f87c77a9fd3b (patch)
treed7cde7b7deb6c08c8a35d393c42460a1e586581a
parent- Fix BUILD_DEPENDS (diff)
Do not create a BSD local hierarchy under ${STAGEDIR}${LINUXBASE} when
USE_LINUX=yes and PREFIX!=LINUXBASE. This is not needed and creates a bunch of stage orphaned directories. PR: ports/184477 Approved by: portmgr (bapt) Tested by: poudriere bulk -t games/dsnake emulators/rtc www/linux-f10-flashplugin11 (no error, no orphans)
Notes
Notes: svn path=/head/; revision=335625
-rw-r--r--Mk/bsd.stage.mk4
1 files changed, 0 insertions, 4 deletions
diff --git a/Mk/bsd.stage.mk b/Mk/bsd.stage.mk
index bb480c7c5cae..86f795fd5993 100644
--- a/Mk/bsd.stage.mk
+++ b/Mk/bsd.stage.mk
@@ -28,10 +28,6 @@ stage-dir:
@${MKDIR} ${STAGEDIR}${PREFIX}
.if !defined(NO_MTREE)
@${MTREE_CMD} ${MTREE_ARGS} ${STAGEDIR}${PREFIX} > /dev/null
-.if defined(USE_LINUX) && ${PREFIX} != ${LINUXBASE}
- @${MKDIR} ${STAGEDIR}${LINUXBASE}
- @${MTREE_CMD} ${MTREE_ARGS} ${STAGEDIR}${LINUXBASE} > /dev/null
-.endif
.endif
.endif