From 6eb6cb650443f3c734bf47959b345497154aa56f Mon Sep 17 00:00:00 2001 From: Colin Sindle Date: Wed, 18 May 2016 13:00:52 +0200 Subject: [PATCH 1/2] Explicitly require Bash, since Bash extensions are used below, and FS reference platform's (Jessie) Make does *not* used Bash by default. --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index a86bbbc..99060c9 100644 --- a/Makefile +++ b/Makefile @@ -5,6 +5,7 @@ FS_MODULES=/opt/freeswitch/mod ################################ ### END OF CUSTOMIZATION ### +SHELL := /bin/bash PROC?=$(shell uname -m) CC=gcc From 5856cb281d5f019bb63a7533c02022631d83318d Mon Sep 17 00:00:00 2001 From: Colin Sindle Date: Wed, 18 May 2016 13:26:02 +0200 Subject: [PATCH 2/2] Default location is the official reference platform's (Jessie) packages' location. --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 99060c9..7cb80c5 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ ################################ -### FreeSwitch headers files ### -FS_INCLUDES=/opt/freeswitch/include -FS_MODULES=/opt/freeswitch/mod +### FreeSwitch headers files found in libfreeswitch-dev ### +FS_INCLUDES=/usr/include/freeswitch +FS_MODULES=/usr/lib/freeswitch/mod ################################ ### END OF CUSTOMIZATION ###