diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-10-27 14:03:25 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-10-27 14:03:25 +0000 |
commit | 531b6fdbf624f1622b9b4fea6868b18625123dd5 (patch) | |
tree | 38807af4d12906f5bdc8add9cd0da36793dece49 /.Makefile.inc | |
parent | ac10df6cc6cb858aaf310971d305a790ccfd3ff7 (diff) |
Have 'make install' make the directories, its really make install's job and not configure's.
Note that configure may still try to make the dirs anyway, e.g. if you are generating ssl certs
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5553 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to '.Makefile.inc')
-rw-r--r-- | .Makefile.inc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.Makefile.inc b/.Makefile.inc index 875c904ff..829da54cc 100644 --- a/.Makefile.inc +++ b/.Makefile.inc @@ -37,6 +37,11 @@ ircd: ${MAKE} -C src DIRNAME="src" $(MAKEARGS) install: all + @-mkdir -p ${BASE} + @-mkdir -p $(LIBPATH) + @-mkdir -p $(BINPATH) + @-mkdir -p $(CONPATH) + @-mkdir -p ${MODPATH} -install -m 0700 src/libIRCDaes.so $(LIBPATH) -install -m 0700 src/libIRCDasyncdns.so $(LIBPATH) -install -m 0700 src/libIRCDbase.so $(LIBPATH) |