diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-07-19 22:00:44 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-07-19 22:00:44 +0000 |
commit | fb3471e948092a5cbf9bea63272e190d5b7951f3 (patch) | |
tree | 656376380b493aa2340648eea715610c896de614 | |
parent | 2fe8bdb5a47b0258bae9d7893bef50b2f50afc5c (diff) |
Fix for bug #353, theres no solution to this but a slightly craqy one, but at least its one line.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7477 e03df62e-2008-0410-955e-edbf42e46eb7
-rwxr-xr-x | configure | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1168,6 +1168,10 @@ EOF foreach $name (sort readdir(DIRHANDLE)) { if ($name =~ /^\.(.+)\.inc$/) { $file = $1; + + # Bug #353, omit this on non-darwin + next if (($config{OSNAME} !~ /darwin/) && ($file eq "org.inspircd.plist")); + # All .name.inc files need parsing! $tmp = ""; open(FILEHANDLE, ".$file.inc"); |