freebsd-ports/lang/mit-scheme/files/patch-src_etc_make-in-subdirs.sh
Jimmy Olgeni c38b25c0b5 Unbreak by replacing make with gmake.
PR:		ports/184593
Submitted by:	marino
2013-12-09 12:49:53 +00:00

9 lines
271 B
Bash

--- 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