Changeset 2ad45ba32f23135b7459830293b6998f013e58cb
- Timestamp:
- 08/24/10 18:43:12
(3 years ago)
- Author:
- Theo Schlossnagle <jesus@omniti.com>
- git-committer:
- Theo Schlossnagle <jesus@omniti.com> 1282675392 +0000
- git-parent:
[ce7e4f2abda41f0847e6adb9cc285de98a8e7245]
- git-author:
- Theo Schlossnagle <jesus@omniti.com> 1282675392 +0000
- Message:
patch from viq to use localstatedir instead of prefx/var
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| refa9375 |
r2ad45ba |
|
| 20 | 20 | includedir=${prefix}/include |
|---|
| 21 | 21 | libexecdir=@libexecdir@ |
|---|
| 22 | | datarootdir = @datarootdir@ |
|---|
| | 22 | localstatedir=@localstatedir@ |
|---|
| | 23 | datarootdir=@datarootdir@ |
|---|
| 23 | 24 | mandir=@mandir@ |
|---|
| 24 | 25 | mansubdir=@mansubdir@ |
|---|
| … | … | |
| 206 | 207 | -e "s^%modulesluadir%^$(MODULES_DIR)^g;" \ |
|---|
| 207 | 208 | -e "s^%iepbindir%^$(bindir)^g;" \ |
|---|
| 208 | | -e "s^%iepdbdir%^$(prefix)/var/db/noit-iep^g;" \ |
|---|
| | 209 | -e "s^%iepdbdir%^$(localstatedir)/db/noit-iep^g;" \ |
|---|
| 209 | 210 | -e "s^%PKIPREFIX%^$${PKIPREFIX}^g;" < \ |
|---|
| 210 | 211 | stratcon.conf.in > \ |
|---|
| r219a952 |
r2ad45ba |
|
| 14 | 14 | includedir=${prefix}/include |
|---|
| 15 | 15 | libexecdir=@libexecdir@ |
|---|
| 16 | | datarootdir = @datarootdir@ |
|---|
| | 16 | localstatedir=@localstatedir@ |
|---|
| | 17 | datarootdir=@datarootdir@ |
|---|
| 17 | 18 | mandir=@mandir@ |
|---|
| 18 | 19 | mansubdir=@mansubdir@ |
|---|
| … | … | |
| 110 | 111 | |
|---|
| 111 | 112 | install-iep: install-dirs all |
|---|
| 112 | | $(top_srcdir)/buildtools/mkinstalldirs $(DESTDIR)$(prefix)/var/db/noit-iep |
|---|
| | 113 | $(top_srcdir)/buildtools/mkinstalldirs $(DESTDIR)$(localstatedir)/db/noit-iep |
|---|
| 113 | 114 | $(INSTALL) -m 0644 reconnoiter.jar $(DESTDIR)$(javalibdir)/reconnoiter.jar |
|---|
| 114 | 115 | for jar in $(R_SUPPORT) ; do \ |
|---|
| … | … | |
| 116 | 117 | done |
|---|
| 117 | 118 | $(INSTALL) -m 0755 run-iep.sh $(DESTDIR)$(bindir)/run-iep.sh |
|---|
| 118 | | $(INSTALL) -m 0644 log4j.xml $(DESTDIR)$(prefix)/var/db/noit-iep/log4j.xml |
|---|
| | 119 | $(INSTALL) -m 0644 log4j.xml $(DESTDIR)$(localstatedir)/db/noit-iep/log4j.xml |
|---|
| 119 | 120 | |
|---|
| 120 | 121 | install-jezebel: install-dirs all |
|---|