Browse Source

Merge pull request #10 from csindle/master

Explicitly require Make use bash shell, since bash only enhancements are used.

good, thanks!
pull/11/head v1.0
Matteo 10 years ago
parent
commit
803858c78e
1 changed files with 4 additions and 3 deletions
  1. +4
    -3
      Makefile

+ 4
- 3
Makefile View File

@ -1,10 +1,11 @@
################################
### 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 ###
SHELL := /bin/bash
PROC?=$(shell uname -m)
CC=gcc


Loading…
Cancel
Save