Skip to content

Commit

Permalink
install conf and log dir
Browse files Browse the repository at this point in the history
  • Loading branch information
Qihoo360 committed Jul 3, 2013
1 parent dc7dee8 commit e3df142
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 4 additions & 0 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -929,6 +929,8 @@ infodir
docdir
oldincludedir
includedir
confdir
logdir
localstatedir
sharedstatedir
sysconfdir
Expand Down Expand Up @@ -1021,6 +1023,8 @@ sharedstatedir='${prefix}/com'
localstatedir='${prefix}/var'
includedir='${prefix}/include'
oldincludedir='/usr/include'
confdir='${prefix}/conf'
logdir='${prefix}/log'
docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
infodir='${datarootdir}/info'
htmldir='${docdir}'
Expand Down
6 changes: 4 additions & 2 deletions src/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -346,6 +346,7 @@ build_cpu = @build_cpu@
build_os = @build_os@
build_vendor = @build_vendor@
builddir = @builddir@
confdir = @confdir@
datadir = @datadir@
datarootdir = @datarootdir@
docdir = @docdir@
Expand All @@ -364,6 +365,7 @@ libdir = @libdir@
libexecdir = @libexecdir@
localedir = @localedir@
localstatedir = @localstatedir@
logdir = @logdir@
lt_ECHO = @lt_ECHO@
mandir = @mandir@
mkdir_p = @mkdir_p@
Expand Down Expand Up @@ -1364,11 +1366,11 @@ all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(HEADERS)
install-binPROGRAMS: install-libLTLIBRARIES

installdirs:
for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(libexecdir)" "$(DESTDIR)$(includedir)"; do \
for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(libexecdir)" "$(DESTDIR)$(includedir)" "$(DESTDIR)$(confdir)" "$(DESTDIR)$(logdir)"; do \
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
done
install: $(BUILT_SOURCES)
$(MAKE) $(AM_MAKEFLAGS) install-am
$(MAKE) $(AM_MAKEFLAGS) install-am installdirs
install-exec: install-exec-am
install-data: install-data-am
uninstall: uninstall-am
Expand Down

0 comments on commit e3df142

Please sign in to comment.