Bug 183118 - [patch] Mk/bsd.port.mk fix restage s/STAGE_DESTDIR/STAGEDIR/
Summary: [patch] Mk/bsd.port.mk fix restage s/STAGE_DESTDIR/STAGEDIR/
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Port Management Team
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-10-20 09:30 UTC by Olli Hauer
Modified: 2013-10-21 09:40 UTC (History)
1 user (show)

See Also:


Attachments
bsd.port.mk.diff (417 bytes, patch)
2013-10-20 09:30 UTC, Olli Hauer
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Olli Hauer freebsd_committer freebsd_triage 2013-10-20 09:30:00 UTC
STAGE_DESTDIR is not defined

How-To-Repeat: cd $random port
make stage
touch work/stage/foobar
make restage
ls work/stage/foobar
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-10-20 09:30:08 UTC
Responsible Changed
From-To: freebsd-ports-bugs->portmgr

bsd.port.mk is portmgr territory (via the GNATS Auto Assign Tool)
Comment 2 dfilter service freebsd_committer freebsd_triage 2013-10-21 09:34:33 UTC
Author: bapt
Date: Mon Oct 21 08:34:26 2013
New Revision: 331101
URL: http://svnweb.freebsd.org/changeset/ports/331101

Log:
  Fix restage target
  
  PR:		ports/183118
  Submitted by:	ohauer

Modified:
  head/Mk/bsd.port.mk

Modified: head/Mk/bsd.port.mk
==============================================================================
--- head/Mk/bsd.port.mk	Mon Oct 21 08:30:47 2013	(r331100)
+++ head/Mk/bsd.port.mk	Mon Oct 21 08:34:26 2013	(r331101)
@@ -4569,7 +4569,7 @@ reinstall:
 
 .if !target(restage)
 restage:
-	@${RM} -rf ${STAGE_DESTDIR} ${STAGE_COOKIE} ${INSTALL_COOKIE} ${PACKAGE_COOKIE}
+	@${RM} -rf ${STAGEDESTDIR} ${STAGE_COOKIE} ${INSTALL_COOKIE} ${PACKAGE_COOKIE}
 	@cd ${.CURDIR} && ${MAKE} stage
 .endif
 
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 3 Baptiste Daroussin freebsd_committer freebsd_triage 2013-10-21 09:35:58 UTC
State Changed
From-To: open->closed

Committed. Thanks!