From 763bc8cfde6f36b939c5f67de2d5d9035b94a886 Mon Sep 17 00:00:00 2001 From: Travis Cross Date: Wed, 18 Dec 2013 18:53:19 +0000 Subject: [PATCH] Fix freeswitch-all module provides/replaces/conflicts We were generating freeswitch-mod-mod-* rather than freeswitch-mod-*. --- debian/bootstrap.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/bootstrap.sh b/debian/bootstrap.sh index 8f12a9fc3f..3704b4b1a9 100755 --- a/debian/bootstrap.sh +++ b/debian/bootstrap.sh @@ -230,8 +230,8 @@ map_pkgs () { map_pkgs_langs () { $fsx "freeswitch-lang-${lang//_/-}"; } map_langs map_pkgs_langs map_pkgs_mods () { - $fsx "freeswitch-mod-${module//_/-}" - $fsx "freeswitch-mod-${module//_/-}-dbg"; } + $fsx "freeswitch-${module//_/-}" + $fsx "freeswitch-${module//_/-}-dbg"; } map_modules map_pkgs_mods }