summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xconfigure4
1 files changed, 4 insertions, 0 deletions
diff --git a/configure b/configure
index a257efa48..a99b248b3 100755
--- a/configure
+++ b/configure
@@ -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");