Author: particle
Date: Wed Oct  5 09:31:42 2005
New Revision: 9359

Modified:
   trunk/config/inter/shlibs.pl
Log:
#37333 [BUG] Config missing response for shared libs
modified step to return 'done' if no flags specified

Modified: trunk/config/inter/shlibs.pl
==============================================================================
--- trunk/config/inter/shlibs.pl        (original)
+++ trunk/config/inter/shlibs.pl        Wed Oct  5 09:31:42 2005
@@ -34,6 +34,7 @@ sub runstep {
        "\nWhat flags instruct your compiler to compile code suitable for use 
in a shared library?",
        $cc_shared) if $ask;
     Configure::Data->set(cc_shared =>  $cc_shared);
-    $Configure::Step::result = $cc_shared;
+    $Configure::Step::result =
+        ( $cc_shared =~ m/^ ?$/ ) ? 'done' : $cc_shared;
 }
 1;

Reply via email to