diff options
author | Damien Miller <djm@mindrot.org> | 2014-05-22 08:23:59 +1000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2014-05-22 08:23:59 +1000 |
commit | 564b5e253c1d95c26a00e8288f0089a2571661c3 (patch) | |
tree | d8a48448e7c34e52c62eab5853bfc53e36c211df | |
parent | e84d10302aeaf7a1acb05c451f8718143656856a (diff) |
- (djm) [Makefile.in] typo in path
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | Makefile.in | 12 |
2 files changed, 9 insertions, 6 deletions
@@ -1,3 +1,6 @@ | |||
1 | 20140522 | ||
2 | - (djm) [Makefile.in] typo in path | ||
3 | |||
1 | 20140521 | 4 | 20140521 |
2 | - (djm) [commit configure.ac defines.h sshpty.c] don't attempt to use | 5 | - (djm) [commit configure.ac defines.h sshpty.c] don't attempt to use |
3 | vhangup on Linux. It doens't work for non-root users, and for them | 6 | vhangup on Linux. It doens't work for non-root users, and for them |
diff --git a/Makefile.in b/Makefile.in index 16fb9ee8c..6bca5b51e 100644 --- a/Makefile.in +++ b/Makefile.in | |||
@@ -1,4 +1,4 @@ | |||
1 | # $Id: Makefile.in,v 1.358 2014/05/15 08:01:01 djm Exp $ | 1 | # $Id: Makefile.in,v 1.359 2014/05/21 22:23:59 djm 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@ |
@@ -412,11 +412,11 @@ uninstall: | |||
412 | 412 | ||
413 | regress-prep: | 413 | regress-prep: |
414 | [ -d `pwd`/regress ] || mkdir -p `pwd`/regress | 414 | [ -d `pwd`/regress ] || mkdir -p `pwd`/regress |
415 | [ -d `pwd`/regress/unitests ] || mkdir -p `pwd`/regress/unitests | 415 | [ -d `pwd`/regress/unittests ] || mkdir -p `pwd`/regress/unittests |
416 | [ -d `pwd`/regress/unitests/test_helper ] || \ | 416 | [ -d `pwd`/regress/unittests/test_helper ] || \ |
417 | mkdir -p `pwd`/regress/unitests/test_helper | 417 | mkdir -p `pwd`/regress/unittests/test_helper |
418 | [ -d `pwd`/regress/unitests/sshbuf ] || \ | 418 | [ -d `pwd`/regress/unittests/sshbuf ] || \ |
419 | mkdir -p `pwd`/regress/unitests/sshbuf | 419 | mkdir -p `pwd`/regress/unittests/sshbuf |
420 | [ -f `pwd`/regress/Makefile ] || \ | 420 | [ -f `pwd`/regress/Makefile ] || \ |
421 | ln -s `cd $(srcdir) && pwd`/regress/Makefile `pwd`/regress/Makefile | 421 | ln -s `cd $(srcdir) && pwd`/regress/Makefile `pwd`/regress/Makefile |
422 | 422 | ||