diff options
author | special <special@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-07-16 13:16:59 +0000 |
---|---|---|
committer | special <special@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-07-16 13:16:59 +0000 |
commit | 110d85009eccf173c8d3705ea263a5dc5a11f885 (patch) | |
tree | 62f81825f1f040dfc4f1516e6185a413684f430c /configure | |
parent | ff5db0ed1e897540217b378a691c6f3601c6243c (diff) |
Little tweak to fix the output when directory modules execute programs for cflags
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7445 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1358,7 +1358,6 @@ EOCHEESE $crap3 = ""; # A module made of multiple files, in a dir, e.g. src/modules/m_spanningtree/ if (opendir(MDIRHANDLE, "src/modules/$name") != 0) { - print "Composing Makefile rules for directory \033[1;32m$name\033[0m... "; my $i = 0; print FILEHANDLE "$name.so: ../../include/modules.h ../../include/users.h ../../include/channels.h ../../include/base.h ../../include/inspircd_config.h ../../include/inspircd.h ../../include/configreader.h"; foreach $fname (sort readdir(MDIRHANDLE)) { @@ -1375,7 +1374,7 @@ EOCHEESE $i++; } } - print "(\033[1;32m$i files found\033[0m)\n"; + print "Composing Makefile rules for directory \033[1;32m$name\033[0m... (\033[1;32m$i files found\033[0m)\n"; if ($config{IS_DARWIN} eq "YES") { print FILEHANDLE "\n \$(CC) -pipe -twolevel_namespace -undefined dynamic_lookup \$(FLAGS) -bundle -o $name.so $crap3\n"; } else { |