[svn] - use mkdir -p
This commit is contained in:
parent
5522d08c14
commit
751894543b
3 changed files with 16 additions and 6 deletions
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
||||||
|
nenolod 2007/04/03 10:49:11 UTC (20070403-3374)
|
||||||
|
Log:
|
||||||
|
- enforce proper conditions for EPOLL_CTL_DEL.
|
||||||
|
- remove possibly problematic "performance" check
|
||||||
|
|
||||||
|
|
||||||
|
Changes: Modified:
|
||||||
|
+1 -5 trunk/libcharybdis/epoll.c (File Modified)
|
||||||
|
|
||||||
|
|
||||||
nenolod 2007/04/03 10:18:07 UTC (20070403-3372)
|
nenolod 2007/04/03 10:18:07 UTC (20070403-3372)
|
||||||
Log:
|
Log:
|
||||||
- rename m_list_safelist to m_list and remove ratbox implementation
|
- rename m_list_safelist to m_list and remove ratbox implementation
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# $Id: Makefile.in 138 2005-09-12 00:48:18Z nenolod $
|
# $Id: Makefile.in 3376 2007-04-03 11:37:39Z nenolod $
|
||||||
CC = @CC@
|
CC = @CC@
|
||||||
INSTALL = @INSTALL@
|
INSTALL = @INSTALL@
|
||||||
INSTALL_BIN = @INSTALL_PROGRAM@
|
INSTALL_BIN = @INSTALL_PROGRAM@
|
||||||
|
@ -43,13 +43,13 @@ CPPFLAGS = ${INCLUDES} @CPPFLAGS@
|
||||||
|
|
||||||
install-mkdirs:
|
install-mkdirs:
|
||||||
-@if test ! -d $(DESTDIR)$(confdir); then \
|
-@if test ! -d $(DESTDIR)$(confdir); then \
|
||||||
echo "mkdir $(confdir)"; \
|
echo "mkdir -p $(confdir)"; \
|
||||||
mkdir $(DESTDIR)$(confdir); \
|
mkdir -p $(DESTDIR)$(confdir); \
|
||||||
fi
|
fi
|
||||||
|
|
||||||
-@if test ! -d $(DESTDIR)$(mandir); then \
|
-@if test ! -d $(DESTDIR)$(mandir); then \
|
||||||
echo "mkdir $(mandir)"; \
|
echo "mkdir -p $(mandir)"; \
|
||||||
mkdir $(DESTDIR)$(mandir); \
|
mkdir -p $(DESTDIR)$(mandir); \
|
||||||
fi
|
fi
|
||||||
|
|
||||||
install: install-mkdirs build
|
install: install-mkdirs build
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
#define SERNO "20070403-3372"
|
#define SERNO "20070403-3374"
|
||||||
|
|
Loading…
Reference in a new issue