Unbreak by replacing make with gmake.

PR:		ports/184593
Submitted by:	marino
This commit is contained in:
Jimmy Olgeni 2013-12-09 12:49:53 +00:00
parent 463fcce56e
commit c38b25c0b5
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=335976

View file

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