diff options
Diffstat (limited to 'auto')
-rwxr-xr-x | auto/config | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/auto/config b/auto/config index b7a6697..265635d 100755 --- a/auto/config +++ b/auto/config @@ -98,7 +98,11 @@ if grep -wq steam <<<"$LB_PACKAGES_LISTS"; then fi grep -wq wine-staging <<<"$LB_PACKAGES $LB_PACKAGES_LISTS" && LB_REPOSITORIES+=" wine-staging" grep -wq iceweasel <<<"$LB_PACKAGES_LISTS" && LB_REPOSITORIES+=" iceweasel" -grep -wq firefox <<<"$LB_PACKAGES_LISTS" && LB_REPOSITORIES+=" firefox" +if grep -wq firefox <<<"$LB_PACKAGES_LISTS"; then + if [ "$LB_DISTRIBUTION" != "wheezy" ]; then + LB_REPOSITORIES+=" firefox" + fi +fi grep -wq silverlight <<<"$LB_PACKAGES_LISTS" && LB_REPOSITORIES+=" silverlight" grep -wq spotify <<<"$LB_PACKAGES_LISTS" && LB_REPOSITORIES+=" spotify" grep -wq dropbox <<<"$LB_PACKAGES_LISTS" && LB_REPOSITORIES+=" dropbox" |