summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorTim Rice <tim@multitalents.net>2003-01-08 17:22:59 -0800
committerTim Rice <tim@multitalents.net>2003-01-08 17:22:59 -0800
commitd0d7a8b27b4cc9faaa4d8e4112d5d1fe759b0939 (patch)
tree7b44ecb8102cac10698d476a3e438eae453575c8 /Makefile.in
parent2047b3bdf69549eff9031fcf4464fd011381ecf2 (diff)
[Makefile.in configure.ac] replace fixpath with sed script. Patch by Mo DeJong.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in37
1 files changed, 19 insertions, 18 deletions
diff --git a/Makefile.in b/Makefile.in
index 89d02c959..85b108d16 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1,4 +1,4 @@
1# $Id: Makefile.in,v 1.222 2002/07/14 17:02:21 tim Exp $ 1# $Id: Makefile.in,v 1.223 2003/01/09 01:22:59 tim Exp $
2 2
3# uncomment if you run a non bourne compatable shell. Ie. csh 3# uncomment if you run a non bourne compatable shell. Ie. csh
4#SHELL = @SH@ 4#SHELL = @SH@
@@ -48,6 +48,7 @@ AR=@AR@
48RANLIB=@RANLIB@ 48RANLIB=@RANLIB@
49INSTALL=@INSTALL@ 49INSTALL=@INSTALL@
50PERL=@PERL@ 50PERL=@PERL@
51SED=@SED@
51ENT=@ENT@ 52ENT=@ENT@
52XAUTH_PATH=@XAUTH_PATH@ 53XAUTH_PATH=@XAUTH_PATH@
53LDFLAGS=-L. -Lopenbsd-compat/ @LDFLAGS@ 54LDFLAGS=-L. -Lopenbsd-compat/ @LDFLAGS@
@@ -74,23 +75,23 @@ CONFIGFILES=sshd_config.out ssh_config.out moduli.out
74CONFIGFILES_IN=sshd_config ssh_config moduli 75CONFIGFILES_IN=sshd_config ssh_config moduli
75 76
76PATHSUBS = \ 77PATHSUBS = \
77 -D/etc/ssh/ssh_prng_cmds=$(sysconfdir)/ssh_prng_cmds \ 78 -e 's|/etc/ssh/ssh_prng_cmds|$(sysconfdir)/ssh_prng_cmds|g' \
78 -D/etc/ssh/ssh_config=$(sysconfdir)/ssh_config \ 79 -e 's|/etc/ssh/ssh_config|$(sysconfdir)/ssh_config|g' \
79 -D/etc/ssh/ssh_known_hosts=$(sysconfdir)/ssh_known_hosts \ 80 -e 's|/etc/ssh/ssh_known_hosts|$(sysconfdir)/ssh_known_hosts|g' \
80 -D/etc/ssh/sshd_config=$(sysconfdir)/sshd_config \ 81 -e 's|/etc/ssh/sshd_config|$(sysconfdir)/sshd_config|g' \
81 -D/usr/libexec=$(libexecdir) \ 82 -e 's|/usr/libexec|$(libexecdir)|g' \
82 -D/etc/shosts.equiv=$(sysconfdir)/shosts.equiv \ 83 -e 's|/etc/shosts.equiv|$(sysconfdir)/shosts.equiv|g' \
83 -D/etc/ssh/ssh_host_key=$(sysconfdir)/ssh_host_key \ 84 -e 's|/etc/ssh/ssh_host_key|$(sysconfdir)/ssh_host_key|g' \
84 -D/etc/ssh/ssh_host_dsa_key=$(sysconfdir)/ssh_host_dsa_key \ 85 -e 's|/etc/ssh/ssh_host_dsa_key|$(sysconfdir)/ssh_host_dsa_key|g' \
85 -D/etc/ssh/ssh_host_rsa_key=$(sysconfdir)/ssh_host_rsa_key \ 86 -e 's|/etc/ssh/ssh_host_rsa_key|$(sysconfdir)/ssh_host_rsa_key|g' \
86 -D/var/run/sshd.pid=$(piddir)/sshd.pid \ 87 -e 's|/var/run/sshd.pid|$(piddir)/sshd.pid|g' \
87 -D/etc/ssh/moduli=$(sysconfdir)/moduli \ 88 -e 's|/etc/ssh/moduli|$(sysconfdir)/moduli|g' \
88 -D/etc/ssh/sshrc=$(sysconfdir)/sshrc \ 89 -e 's|/etc/sshrc|$(sysconfdir)/sshrc|g' \
89 -D/usr/X11R6/bin/xauth=$(XAUTH_PATH) \ 90 -e 's|/usr/X11R6/bin/xauth|$(XAUTH_PATH)|g' \
90 -D/var/empty=$(PRIVSEP_PATH) \ 91 -e 's|/var/empty|$(PRIVSEP_PATH)|g' \
91 -D/usr/bin:/bin:/usr/sbin:/sbin=@user_path@ 92 -e 's|/usr/bin:/bin:/usr/sbin:/sbin|@user_path@|g'
92 93
93FIXPATHSCMD = $(PERL) $(srcdir)/fixpaths $(PATHSUBS) 94FIXPATHSCMD = $(SED) $(PATHSUBS)
94 95
95all: $(CONFIGFILES) $(MANPAGES) $(TARGETS) 96all: $(CONFIGFILES) $(MANPAGES) $(TARGETS)
96 97