• Do not register here on develop.twiki.org, login with your twiki.org account.
• Use View topic Item7848 for generic doc work for TWiki-6.1.1. Use View topic Item7851 for doc work on extensions that are not part of a release. More... Close
• Anything you create or change in standard webs (Main, TWiki, Sandbox etc) will be automatically reverted on every SVN update.
Does this site look broken?. Use the LitterTray web for test cases.

The configure script reports warnings because of non-executable config files. Here is a simple fix for it:

--- configure.orig      2006-02-05 14:54:58.000000000 +0100
+++ configure   2006-02-05 18:54:26.000000000 +0100
@@ -381,7 +381,7 @@
     opendir(D, $dir) or return ERROR("Cannot open $dir for read - check it exists, and that permissions are correct");
     foreach my $script (grep { -f "$dir/$_" && /^\w+(\.\w+)?$/ } readdir D) {
         next if( $ext && $script !~ /\.$ext$/ );
-        if( $TWiki::cfg{OS} !~ /^Windows$/i && !-x "$dir/$script" ) {
+        if( $TWiki::cfg{OS} !~ /^Windows$/i && $script !~ /\.cfg$/ && !-x "$dir/$script" ) {
             $errs .= WARN($script . ' might not be an executable script - please check it (and its permissions) manually');
         }
     }


Thanks, ignored this once too many!

SVN 8695.

-- SP

ItemTemplate
Summary config files don't need to be executable
ReportedBy TWiki:Main.MarkusKolb
Codebase

SVN Range Sun, 29 Jan 2006 build 8586
AppliesTo Engine
Component

Priority Low
CurrentState Closed
WaitingFor

TargetRelease patch
Edit | Attach | Watch | Print version | History: r5 < r4 < r3 < r2 < r1 | Backlinks | Raw View |  Raw edit | More topic actions
Topic revision: r5 - 2006-02-08 - SvenDowideit
 
This site is powered by the TWiki collaboration platform Powered by PerlCopyright © 2008-2024 by the contributing authors. All material on this collaboration platform is the property of the contributing authors.
Ideas, requests, problems regarding TWiki? Send feedback