about summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kernel/generate-config.pl
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2010-01-27 15:43:27 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2010-01-27 15:43:27 +0000
commite04beb262ee13b6639fb86594ca22acf3d98c95e (patch)
treea7535f34ca66e36bc9decf5d7af1a0c125853f95 /pkgs/os-specific/linux/kernel/generate-config.pl
parente9ff6517b962f852bae06932ae176ed56ec00c00 (diff)
* Strangely, running "make defconfig" before the generator causes
  "make config" to print an additional question that the script
  doesn't know how to answer ("Audio Excel DSP 16 [N/y] (NEW) ###").
  Just ignore it.

svn path=/nixpkgs/branches/stdenv-updates/; revision=19713
Diffstat (limited to 'pkgs/os-specific/linux/kernel/generate-config.pl')
-rw-r--r--pkgs/os-specific/linux/kernel/generate-config.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/os-specific/linux/kernel/generate-config.pl b/pkgs/os-specific/linux/kernel/generate-config.pl
index be5118672e3bc..e8f7e6555d33b 100644
--- a/pkgs/os-specific/linux/kernel/generate-config.pl
+++ b/pkgs/os-specific/linux/kernel/generate-config.pl
@@ -94,7 +94,8 @@ sub runConfig {
             }
             
             else {
-                die "don't know how to answer this question: $line\n";
+                warn "don't know how to answer this question: $line\n";
+                print OUT "\n";
             }
         
             $line = "";