FS-8576 resolving issue where fonts and images were installed in all of the conf packages.
This commit is contained in:
parent
58c267bf96
commit
1eec06bd85
|
@ -1008,8 +1008,6 @@ EOF
|
||||||
print_conf_install () {
|
print_conf_install () {
|
||||||
cat <<EOF
|
cat <<EOF
|
||||||
conf/${conf} /usr/share/freeswitch/conf
|
conf/${conf} /usr/share/freeswitch/conf
|
||||||
/usr/share/freeswitch/fonts
|
|
||||||
/var/lib/freeswitch/images
|
|
||||||
EOF
|
EOF
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1346,6 +1344,10 @@ grep -e '^Package:' control | grep -v '^freeswitch-all$' | while xread l; do
|
||||||
m="${l#*: }"
|
m="${l#*: }"
|
||||||
conf_merge freeswitch-all.install $m.install
|
conf_merge freeswitch-all.install $m.install
|
||||||
done
|
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
|
for x in postinst postrm preinst prerm; do
|
||||||
cp -a freeswitch.$x freeswitch-all.$x
|
cp -a freeswitch.$x freeswitch-all.$x
|
||||||
done
|
done
|
||||||
|
|
Loading…
Reference in New Issue