1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-06 04:33:13 +02:00

Fixed a typo in the *nix Makefile

This commit is contained in:
codemastr
2004-09-05 23:17:37 +00:00
parent edff4089c7
commit 18311db5bf
2 changed files with 5 additions and 1 deletions
+1
View File
@@ -345,3 +345,4 @@
- Added a new snomask, +o to show oper-up notices (oper only), (#0001965) suggested by
vonitsanet.
- Added a /userip command that works just like ircu's.
- Fixed a typo in the *nix Makefile reported by Troco (#0002059)
+4 -1
View File
@@ -355,6 +355,9 @@ m_connect.o: m_connect.c $(INCLUDES)
m_dccallow.o: m_dccallow.c $(INCLUDES)
$(CC) $(CFLAGS) $(MODULEFLAGS) -c m_dccallow.c
m_userip.o: m_userip.c $(INCLUDES)
$(CC) $(CFLAGS) $(MODULEFLAGS) -c m_userip.c
#############################################################################
# .so's section
#############################################################################
@@ -715,7 +718,7 @@ m_dccallow.so: m_dccallow.c $(INCLUDES)
$(CC) $(CFLAGS) $(MODULEFLAGS) -DDYNAMIC_LINKING \
-o m_dccallow.so m_dccallow.c
m_userip.o: m_userip.c $(INCLUDES)
m_userip.so: m_userip.c $(INCLUDES)
$(CC) $(CFLAGS) $(MODULEFLAGS) -c m_userip.c
#############################################################################