| Summary: | Cannot install lang/mit-scheme | ||||||||
|---|---|---|---|---|---|---|---|---|---|
| Product: | Ports & Packages | Reporter: | Hyogeol Lee <hyogeollee> | ||||||
| Component: | Individual Port(s) | Assignee: | Jimmy Olgeni <olgeni> | ||||||
| Status: | Closed FIXED | ||||||||
| Severity: | Affects Only Me | ||||||||
| Priority: | Normal | ||||||||
| Version: | Latest | ||||||||
| Hardware: | Any | ||||||||
| OS: | Any | ||||||||
| Attachments: |
|
||||||||
|
Description
Hyogeol Lee
2013-12-08 14:50:00 UTC
Responsible Changed From-To: freebsd-ports-bugs->olgeni Over to maintainer (via the GNATS Auto Assign Tool) I confirm this is why mit-scheme is broken on F10 and head.
It appears "gmake" does indeed need to be hardcoded in the patch;
neither $(MAKE) nor ${MAKE} will work.
The attached diff will create the necessary patch in "files" directory
to fix this port.
John
Author: olgeni Date: Mon Dec 9 12:49:53 2013 New Revision: 335976 URL: http://svnweb.freebsd.org/changeset/ports/335976 Log: Unbreak by replacing make with gmake. PR: ports/184593 Submitted by: marino Added: head/lang/mit-scheme/files/patch-src_etc_make-in-subdirs.sh (contents, props changed) Added: head/lang/mit-scheme/files/patch-src_etc_make-in-subdirs.sh ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/mit-scheme/files/patch-src_etc_make-in-subdirs.sh Mon Dec 9 12:49:53 2013 (r335976) @@ -0,0 +1,9 @@ +--- etc/make-in-subdirs.sh.orig 2011-05-02 01:50:30.000000000 +0000 ++++ etc/make-in-subdirs.sh +@@ -29,5 +29,5 @@ set -e + TARGET=${1} + shift + for SUBDIR in "${@}"; do +- run_cmd_in_dir "${SUBDIR}" make "${TARGET}" ++ run_cmd_in_dir "${SUBDIR}" gmake "${TARGET}" + done _______________________________________________ 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" State Changed From-To: open->closed Patch committed - thanks! |