Changeset a18c4475bc3ed4d53b3fee51fee268e5d4a13905
- Timestamp:
- 05/04/09 02:48:41
(4 years ago)
- Author:
- Theo Schlossnagle <jesus@omniti.com>
- git-committer:
- Theo Schlossnagle <jesus@omniti.com> 1241405321 +0000
- git-parent:
[1b678a86ad806406fd5bea916055c40ba9a0a1dd]
- git-author:
- Theo Schlossnagle <jesus@omniti.com> 1241405321 +0000
- Message:
fix for test cert paths
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rd074a94 |
ra18c447 |
|
| 47 | 47 | noit_conf.o noit_http.o noit_tokenizer.o \ |
|---|
| 48 | 48 | stratcon_realtime_http.o \ |
|---|
| 49 | | stratcon_jlog_streamer.o stratcon_datastore.o |
|---|
| | 49 | stratcon_jlog_streamer.o stratcon_datastore.o \ |
|---|
| | 50 | stratcon_iep.o |
|---|
| 50 | 51 | |
|---|
| 51 | | all: noitd stratcond noit.conf test-noit.conf |
|---|
| | 52 | all: noitd stratcond noit.conf test-noit.conf stratcon.conf test-stratcon.conf |
|---|
| 52 | 53 | |
|---|
| 53 | 54 | make-subdirs: serf/.libs/libserf-0.o jlog/libjlog.a |
|---|
| … | … | |
| 118 | 119 | -e "s^%modulesdir%^`pwd`/modules^g;" \ |
|---|
| 119 | 120 | -e "s^%modulesluadir%^`pwd`/modules-lua^g;" \ |
|---|
| 120 | | -e "s^%PKIPREFIX%^`pwd`/../test/test-^g;" < \ |
|---|
| | 121 | -e "s^%PKIPREFIX%^../test/test-^g;" < \ |
|---|
| 121 | 122 | noit.conf.in > \ |
|---|
| 122 | 123 | test-noit.conf |
|---|
| … | … | |
| 129 | 130 | noit.conf.in > \ |
|---|
| 130 | 131 | noit.conf |
|---|
| | 132 | |
|---|
| | 133 | test-stratcon.conf: stratcon.conf.in |
|---|
| | 134 | sed -e "s^%sysconfdir%^`pwd`^g;" \ |
|---|
| | 135 | -e "s^%modulesdir%^`pwd`/modules^g;" \ |
|---|
| | 136 | -e "s^%modulesluadir%^`pwd`/modules-lua^g;" \ |
|---|
| | 137 | -e "s^%PKIPREFIX%^../test/test-^g;" < \ |
|---|
| | 138 | stratcon.conf.in > \ |
|---|
| | 139 | test-stratcon.conf |
|---|
| | 140 | |
|---|
| | 141 | stratcon.conf: stratcon.conf.in |
|---|
| | 142 | sed -e "s^%sysconfdir%^$(sysconfdir)^g;" \ |
|---|
| | 143 | -e "s^%modulesdir%^$(MODULES_DIR)^g;" \ |
|---|
| | 144 | -e "s^%modulesluadir%^$(MODULES_DIR)^g;" \ |
|---|
| | 145 | -e "s^%PKIPREFIX%^$${PKIPREFIX}^g;" < \ |
|---|
| | 146 | stratcon.conf.in > \ |
|---|
| | 147 | stratcon.conf |
|---|
| 131 | 148 | |
|---|
| 132 | 149 | install: all |
|---|