mirror of
https://github.com/matrix-construct/construct
synced 2024-11-16 06:51:08 +01:00
[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)
|
||||
Log:
|
||||
- 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@
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_BIN = @INSTALL_PROGRAM@
|
||||
|
@ -43,13 +43,13 @@ CPPFLAGS = ${INCLUDES} @CPPFLAGS@
|
|||
|
||||
install-mkdirs:
|
||||
-@if test ! -d $(DESTDIR)$(confdir); then \
|
||||
echo "mkdir $(confdir)"; \
|
||||
mkdir $(DESTDIR)$(confdir); \
|
||||
echo "mkdir -p $(confdir)"; \
|
||||
mkdir -p $(DESTDIR)$(confdir); \
|
||||
fi
|
||||
|
||||
-@if test ! -d $(DESTDIR)$(mandir); then \
|
||||
echo "mkdir $(mandir)"; \
|
||||
mkdir $(DESTDIR)$(mandir); \
|
||||
echo "mkdir -p $(mandir)"; \
|
||||
mkdir -p $(DESTDIR)$(mandir); \
|
||||
fi
|
||||
|
||||
install: install-mkdirs build
|
||||
|
|
|
@ -1 +1 @@
|
|||
#define SERNO "20070403-3372"
|
||||
#define SERNO "20070403-3374"
|
||||
|
|
Loading…
Reference in a new issue