0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-09 05:29:00 +02:00

[svn] - use mkdir -p

This commit is contained in:
nenolod 2007-04-03 04:37:39 -07:00
parent 5522d08c14
commit 751894543b
3 changed files with 16 additions and 6 deletions

View file

@ -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

View file

@ -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

View file

@ -1 +1 @@
#define SERNO "20070403-3372"
#define SERNO "20070403-3374"