summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2013-03-05 21:50:09 +1100
committerDarren Tucker <dtucker@zip.com.au>2013-03-05 21:50:09 +1100
commit29c7151d2055ce8469e07e6ac40b1c5b18bfeff0 (patch)
tree52707401744de05c89bc3d799b40896dfb5ff5fb
parentfef9f7c3d104dd2ecc9af93450c57abd66384737 (diff)
- (dtucker) [Makefile.in] Remove trailing "\" on PATHS, which caused obscure
build breakage on (at least) HP-UX 11.11. Found by Amit Kulkarni and Kevin Brott.
-rw-r--r--ChangeLog3
-rw-r--r--Makefile.in4
2 files changed, 5 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 31e45f761..f3340b6e5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,9 @@
3 HP/UX. Spotted by Kevin Brott 3 HP/UX. Spotted by Kevin Brott
4 - (dtucker) [configure.ac] use "=" for shell test and not "==". Spotted by 4 - (dtucker) [configure.ac] use "=" for shell test and not "==". Spotted by
5 Amit Kulkarni and Kevin Brott. 5 Amit Kulkarni and Kevin Brott.
6 - (dtucker) [Makefile.in] Remove trailing "\" on PATHS, which caused obscure
7 build breakage on (at least) HP-UX 11.11. Found by Amit Kulkarni and Kevin
8 Brott.
6 9
720130227 1020130227
8 - (djm) [README contrib/caldera/openssh.spec contrib/redhat/openssh.spec] 11 - (djm) [README contrib/caldera/openssh.spec contrib/redhat/openssh.spec]
diff --git a/Makefile.in b/Makefile.in
index 6067063a2..45509658f 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1,4 +1,4 @@
1# $Id: Makefile.in,v 1.333 2013/02/21 23:40:00 dtucker Exp $ 1# $Id: Makefile.in,v 1.334 2013/03/05 10:50:09 dtucker 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@
@@ -37,7 +37,7 @@ PATHS= -DSSHDIR=\"$(sysconfdir)\" \
37 -D_PATH_SSH_KEY_SIGN=\"$(SSH_KEYSIGN)\" \ 37 -D_PATH_SSH_KEY_SIGN=\"$(SSH_KEYSIGN)\" \
38 -D_PATH_SSH_PKCS11_HELPER=\"$(SSH_PKCS11_HELPER)\" \ 38 -D_PATH_SSH_PKCS11_HELPER=\"$(SSH_PKCS11_HELPER)\" \
39 -D_PATH_SSH_PIDDIR=\"$(piddir)\" \ 39 -D_PATH_SSH_PIDDIR=\"$(piddir)\" \
40 -D_PATH_PRIVSEP_CHROOT_DIR=\"$(PRIVSEP_PATH)\" \ 40 -D_PATH_PRIVSEP_CHROOT_DIR=\"$(PRIVSEP_PATH)\"
41 41
42CC=@CC@ 42CC=@CC@
43LD=@LD@ 43LD=@LD@