diff options
author | dynaflash <[email protected]> | 2012-11-15 18:39:56 +0000 |
---|---|---|
committer | dynaflash <[email protected]> | 2012-11-15 18:39:56 +0000 |
commit | 47a44b82e9fafa080a120074d4a616182d93faa0 (patch) | |
tree | 93273d17b58679e4cf48411c1aef44b2059f20a6 | |
parent | 066aa49bbdf13897c3ce8c6558367cf6cd6fdb32 (diff) |
Freetype: use GNU make on Solaris
- Courtesy of icchan thanks again!
- Let's instead use gmake (normally installed in /usr/sfw/bin/gmake) to build the FreeType contrib.
- Review here https://reviews.handbrake.fr/r/365/
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5064 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | contrib/freetype/P01-solaris-use-gmake.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/contrib/freetype/P01-solaris-use-gmake.patch b/contrib/freetype/P01-solaris-use-gmake.patch new file mode 100644 index 000000000..608efdc2c --- /dev/null +++ b/contrib/freetype/P01-solaris-use-gmake.patch @@ -0,0 +1,25 @@ +From 6017133ae056c3abcd70aac6873adf0709f5f486 Mon Sep 17 00:00:00 2001 +From: Sean McGovern <[email protected]> +Date: Sun, 28 Oct 2012 23:26:15 -0400 +Subject: [PATCH] build: use 'gmake' instead of 'make' + +--- + configure | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/configure b/configure +index b397556..cb125e1 100755 +--- a/configure ++++ b/configure +@@ -16,7 +16,7 @@ + rm -f config.mk builds/unix/unix-def.mk builds/unix/unix-cc.mk + + if test "x$GNUMAKE" = x; then +- GNUMAKE=make ++ GNUMAKE=gmake + fi + + if test -z "`$GNUMAKE -v 2>/dev/null | grep GNU`"; then +-- +1.7.12 + |