diff --git includes/features.node.inc includes/features.node.inc
index c54a413..209ba8f 100644
--- includes/features.node.inc
+++ includes/features.node.inc
@@ -32,8 +32,10 @@ function node_features_export($data, &$export, $module_name = '') {
   foreach ($data as $type) {
     // Poll node module to determine who provides the node type.
     if ($info = node_get_types('module', $type)) {
-      $export['dependencies'][$info] = $info;
-
+      if ($module_name != $info && module_exists($info)) {
+        $export['dependencies'][$info] = $info;
+      }
+  
       // If this node type is provided by a different module, add it as a dependency
       if (isset($map[$type]) && $map[$type] != $module_name) {
         $export['dependencies'][$map[$type]] = $map[$type];
