FS-8576 resolving issue where fonts and images were installed in all of the conf packages.

This commit is contained in:
William King 2015-11-25 16:04:45 -08:00
parent 58c267bf96
commit 1eec06bd85
1 changed files with 4 additions and 2 deletions

6
debian/bootstrap.sh vendored
View File

@ -1008,8 +1008,6 @@ EOF
print_conf_install () {
cat <<EOF
conf/${conf} /usr/share/freeswitch/conf
/usr/share/freeswitch/fonts
/var/lib/freeswitch/images
EOF
}
@ -1346,6 +1344,10 @@ grep -e '^Package:' control | grep -v '^freeswitch-all$' | while xread l; do
m="${l#*: }"
conf_merge freeswitch-all.install $m.install
done
echo "/usr/share/freeswitch/fonts" >> freeswitch-all.install
echo "/var/lib/freeswitch/images" >> freeswitch-all.install
for x in postinst postrm preinst prerm; do
cp -a freeswitch.$x freeswitch-all.$x
done