Common subdirectories: uuid_features/includes and /var/aegir/platforms/dcpl-drupal7/sites/openlibrary2.albatrossdemos.com/modules/uuid_features/includes
diff -u uuid_features/uuid_features.module /var/aegir/platforms/dcpl-drupal7/sites/openlibrary2.albatrossdemos.com/modules/uuid_features/uuid_features.module
--- uuid_features/uuid_features.module	2011-06-15 18:58:20.000000000 +0000
+++ /var/aegir/platforms/dcpl-drupal7/sites/openlibrary2.albatrossdemos.com/modules/uuid_features/uuid_features.module	2011-05-30 20:49:37.000000000 +0000
@@ -4,30 +4,27 @@
  * Implements hook_features_api().
  */
 function uuid_features_features_api() {
-  $components = array();
-  if (module_exists('uuid_node')){
-    $components['uuid_node'] = array(
+  $components = array(
+    'uuid_node' => array(
       'name' => t('Content'),
       'features_source' => TRUE,
       'default_hook' => 'uuid_features_default_content',
       'default_file' => FEATURES_DEFAULTS_INCLUDED,
       'file' => drupal_get_path('module', 'uuid_features') . '/includes/uuid_node.features.inc',
-    );
-  }
-  if (module_exists('uuid_taxonomy')){
-    $components['uuid_vocabulary'] = array(
+    ),
+    'uuid_vocabulary' => array(
       'name' => t('Vocabulary'),
       'default_hook' => 'uuid_features_default_vocabularies',
       'default_file' => FEATURES_DEFAULTS_INCLUDED,
       'file' => drupal_get_path('module', 'uuid_features') . '/includes/uuid_vocabulary.features.inc',
-    );
-    $components['uuid_term'] = array(
+    ),
+    'uuid_term' => array(
       'name' => t('Taxonomy Term'),
       'default_hook' => 'uuid_features_default_terms',
       'default_file' => FEATURES_DEFAULTS_INCLUDED,
       'file' => drupal_get_path('module', 'uuid_features') . '/includes/uuid_term.features.inc',
-    );
-  }
+    ),
+  );
 
   // Depends on http://drupal.org/node/808690
   if (function_exists('uuid_file_insert')) {
