summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-07-19 22:00:44 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-07-19 22:00:44 +0000
commitfb3471e948092a5cbf9bea63272e190d5b7951f3 (patch)
tree656376380b493aa2340648eea715610c896de614 /configure
parent2fe8bdb5a47b0258bae9d7893bef50b2f50afc5c (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
Diffstat (limited to 'configure')
-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");