diff --git nodeformcols.module nodeformcols.module
index 5db4eae..8f89d58 100644
--- nodeformcols.module
+++ nodeformcols.module
@@ -239,9 +239,16 @@ function nodeformcols_node_type($op, $info) {
  * Implementation of hook_features_pipe_alter() for node component.
  */
 function nodeformcols_features_pipe_node_alter(&$pipe, $data, &$export, $module_name) {
-  if (!empty($data) && module_exists('strongarm')) {
-    foreach ($data as $node_type) {
-      $pipe['variable'][] = 'nodeformscols_field_placements_'. $node_type .'_default';
+  if (!empty($export['features']['node']) && module_exists('strongarm')) {
+    $map = features_get_default_map('variable');
+    foreach ($export['features']['node'] as $node_type) {
+      $variable_name = 'nodeformscols_field_placements_'. $node_type .'_default';
+      if (isset($map[$variable_name]) && $map[$variable_name] != $module_name) {
+        $export['dependencies'][$map[$variable_name]] = $map[$variable_name];
+      }
+      else {
+        $pipe['variable'][] = $variable_name;
+      }
     }
   }
 }
