[srvx-commits] CVS: services Makefile.am,1.9.2.4,1.9.2.5
Brought to you by:
entrope
From: Entrope <en...@us...> - 2001-09-10 19:17:15
|
Update of /cvsroot/srvx/services In directory usw-pr-cvs1:/tmp/cvs-serv495 Modified Files: Tag: rel-1_0 Makefile.am Log Message: fix build when $(builddir) != $(srcdir) Index: Makefile.am =================================================================== RCS file: /cvsroot/srvx/services/Makefile.am,v retrieving revision 1.9.2.4 retrieving revision 1.9.2.5 diff -C2 -r1.9.2.4 -r1.9.2.5 *** Makefile.am 2001/08/26 03:43:35 1.9.2.4 --- Makefile.am 2001/09/10 19:17:10 1.9.2.5 *************** *** 8,23 **** srvx: src/srvx ! cp src/srvx src/*.help . install-exec-local: $(INSTALL) -d -m 755 $(prefix) ! $(INSTALL) -m 744 src/srvx $(prefix) ! $(INSTALL) -m 644 src/*.help $(prefix) ! $(INSTALL) -m 600 srvx.conf.example $(prefix) ! $(INSTALL) -m 644 sockcheck.db.example $(prefix) ! mv $(prefix)/bin/srvx $(prefix) @echo @echo srvx-$(VERSION) has been installed to $(prefix) @echo Remember to edit srvx.conf.example and sockcheck.db.example ! @echo And of course, bin/srvx --help before starting. @echo --- 8,22 ---- srvx: src/srvx ! cp ./src/srvx $(srcdir)/src/*.help . install-exec-local: $(INSTALL) -d -m 755 $(prefix) ! $(INSTALL) -m 744 ./src/srvx $(prefix) ! $(INSTALL) -m 644 $(srcdir)/src/*.help $(prefix) ! $(INSTALL) -m 600 $(srcdir)/srvx.conf.example $(prefix) ! $(INSTALL) -m 644 $(srcdir)/sockcheck.db.example $(prefix) @echo @echo srvx-$(VERSION) has been installed to $(prefix) @echo Remember to edit srvx.conf.example and sockcheck.db.example ! @echo And of course, ./srvx --help before starting. @echo |