diff --git a/includes/icons.inc b/includes/icons.inc
index 56a5aaf..8f56784 100644
--- a/includes/icons.inc
+++ b/includes/icons.inc
@@ -22,21 +22,19 @@ function bootstrap_icon_providers() {
  * Implements hook_icon_bundles().
  */
 function bootstrap_icon_bundles() {
-  $bundles = array();
-  if (_bootstrap_glyphicons_supported()) {
-    $bundles['bootstrap'] = array(
-      'render' => 'sprite',
-      'provider' => 'bootstrap',
-      'title' => t('Bootstrap'),
-      'version' => t('Icons by Glyphicons'),
-      'variations' => array(
-        'icon-white' => t('White'),
-      ),
-      'settings' => array(
-        'tag' => 'span',
-      ),
-      'icons' => _bootstrap_glyphicons(),
-    );
-  }
+  $bundles['bootstrap'] = array(
+    'render' => 'sprite',
+    'provider' => 'bootstrap',
+    'title' => t('Bootstrap'),
+    'version' => t('Icons by Glyphicons'),
+    'variations' => array(
+      'icon-white' => t('White'),
+    ),
+    'settings' => array(
+      'tag' => 'span',
+    ),
+    'icons' => _bootstrap_glyphicons(),
+  );
+
   return $bundles;
 }
