Fix quoting issue in debian/rules

This amends commit f93c3f70bf
This commit is contained in:
Travis Cross 2013-04-23 10:00:49 +00:00
parent c1060f5d18
commit b6ca76e443
1 changed files with 2 additions and 1 deletions

3
debian/rules vendored
View File

@ -7,7 +7,7 @@
FS_CC?=gcc
FS_CXX?=g++
FS_CFLAGS?=-g3 -O2 -fPIC
FS_CPPFLAGS?='-DSWITCH_STORAGE_DIR="/var/lib/freeswitch/storage"' '-DSWITCH_CERTS_DIR="/etc/freeswitch/tls"'
FS_CPPFLAGS?=-DSWITCH_STORAGE_DIR='"/var/lib/freeswitch/storage"'
FS_CXXFLAGS?=$(FS_CFLAGS)
export PATH?=/usr/lib/ccache:/usr/sbin:/usr/bin:/sbin:/bin
export CC=$(FS_CC)
@ -74,6 +74,7 @@ override_dh_auto_clean:
--with-htdocsdir=/usr/share/freeswitch/htdocs \
--with-soundsdir=/usr/share/freeswitch/sounds \
--with-grammardir=/usr/share/freeswitch/grammar \
--with-certsdir=/etc/freeswitch/tls \
--with-scriptdir=/usr/share/freeswitch/scripts \
--with-recordingsdir=/var/lib/freeswitch/recordings
touch $@