Bug 186012 - [patch] sysutils/freeipmi: fix non-root 'make stage'
Summary: [patch] sysutils/freeipmi: fix non-root 'make stage'
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: Po-Chuan Hsieh
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-01-22 18:50 UTC by John Hein
Modified: 2014-02-04 11:54 UTC (History)
1 user (show)

See Also:


Attachments
file.diff (341 bytes, patch)
2014-01-22 18:50 UTC, John Hein
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description John Hein 2014-01-22 18:50:00 UTC
'make stage' as non-root fails due to post-install rules.  Now that these
directories are created in the pkg-plist after staging was added to this
port, the post-install target is unnecessary (duplicates of what's
in pkg-plist).

How-To-Repeat: 
as regular user:
make -C /usr/ports/sysutils/freeipmi stage
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2014-01-22 18:50:08 UTC
Responsible Changed
From-To: freebsd-ports-bugs->sunpoet

Over to maintainer (via the GNATS Auto Assign Tool)
Comment 2 dfilter service freebsd_committer freebsd_triage 2014-02-04 11:41:19 UTC
Author: sunpoet
Date: Tue Feb  4 11:41:10 2014
New Revision: 342500
URL: http://svnweb.freebsd.org/changeset/ports/342500
QAT: https://qat.redports.org/buildarchive/r342500/

Log:
  - Fix staging support
  
  PR:		ports/186012
  Submitted by:	John Hein <jhein@symmetricom.com>

Modified:
  head/sysutils/freeipmi/Makefile

Modified: head/sysutils/freeipmi/Makefile
==============================================================================
--- head/sysutils/freeipmi/Makefile	Tue Feb  4 11:41:05 2014	(r342499)
+++ head/sysutils/freeipmi/Makefile	Tue Feb  4 11:41:10 2014	(r342500)
@@ -63,7 +63,4 @@ post-patch:
 		${WRKSRC}/Makefile.in ${WRKSRC}/doc/Makefile.in
 .endif
 
-post-install:
-	${MKDIR} -m 0700 ${CACHE_DIR}/ipmimonitoringsdrcache ${LOG_DIR}/ ${RUN_DIR}/
-
 .include <bsd.port.mk>
_______________________________________________
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 Po-Chuan Hsieh freebsd_committer freebsd_triage 2014-02-04 11:54:09 UTC
State Changed
From-To: open->closed

Committed. Thanks!