diff options
author | dtucker <dtucker> | 2003-09-14 01:40:35 +0000 |
---|---|---|
committer | dtucker <dtucker> | 2003-09-14 01:40:35 +0000 |
commit | dbdd27096ee03471d5df766f5d91dc2a36d23e5e (patch) | |
tree | 1ef49ac45319e656473306f155f722049ce5deeb /Makefile.in | |
parent | 191f90bc04adfde501819189922b7a96cf7899df (diff) | |
download | openssh-dbdd27096ee03471d5df766f5d91dc2a36d23e5e.tar.gz |
- (dtucker) [Makefile regress/Makefile] Fix portability issues preventing
the regression tests from running with Solaris' make. Patch from Brian
Poole (raj at cerias.purdue.edu).
Further info: Solaris' /usr/ccs/bin/make
* requires a space before "+=" (but not "=")
* does not like @for
The bit that relies on a trailing "/" on $OBJ so "rm ${OBJ}$$F works in the
current dir if OBJ isn't set is my fault. Nasty but it works.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index c10b1e77..8a877446 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1,4 +1,4 @@ -# $Id: Makefile.in,v 1.248 2003/09/12 20:02:16 tim Exp $ +# $Id: Makefile.in,v 1.249 2003/09/14 01:40:36 dtucker Exp $ # uncomment if you run a non bourne compatable shell. Ie. csh #SHELL = @SH@ @@ -386,7 +386,7 @@ tests: $(TARGETS) .OBJDIR="$${BUILDDIR}/regress" \ .CURDIR="`pwd`" \ BUILDDIR="$${BUILDDIR}" \ - OBJ="$${BUILDDIR}/regress" \ + OBJ="$${BUILDDIR}/regress/" \ PATH="$${BUILDDIR}:$${PATH}" \ TEST_SSH_SSH="$${TEST_SSH_SSH}" \ TEST_SSH_SSHD="$${TEST_SSH_SSHD}" \ |