commit-inetutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] GNU Inetutils branch, master, updated. inetutils-1_8-189-ge0c1862


From: Mats Erik Andersson
Subject: [SCM] GNU Inetutils branch, master, updated. inetutils-1_8-189-ge0c1862
Date: Fri, 02 Dec 2011 02:09:41 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Inetutils ".

The branch, master has been updated
       via  e0c18623f33b9fdf074772e0d1fe9684859b36c4 (commit)
      from  7e8209fa387fdd109b63ad00ef6a9dc8662646a6 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit/inetutils.git/commit/?id=e0c18623f33b9fdf074772e0d1fe9684859b36c4


commit e0c18623f33b9fdf074772e0d1fe9684859b36c4
Author: Mats Erik Andersson <address@hidden>
Date:   Fri Dec 2 03:08:19 2011 +0100

    tests/ftp-localhost.sh: Portability fix.
    
    GNU, BSD, and Solaris.

diff --git a/ChangeLog b/ChangeLog
index ac2fd0b..ee6a1cb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2011-12-02  Mats Erik Andersson <address@hidden>
 
+       * tests/ftp-localhost.sh: Portable invokation of mktemp(1).
+
+2011-12-02  Mats Erik Andersson <address@hidden>
+
        * configure.ac: Check for external declarations of `telcmds'
        and `telopts'.  Define UTMPX for NetBSD.
        * telnet/commands.c (send_tncmd) [!HAVE_DECL_TELOPTS]: Make the
diff --git a/tests/ftp-localhost.sh b/tests/ftp-localhost.sh
index 0a589dd..37374e3 100755
--- a/tests/ftp-localhost.sh
+++ b/tests/ftp-localhost.sh
@@ -46,7 +46,7 @@ fi
 # Note that inetd changes directory to / when --debug is not given so
 # all paths must be absolute for things to work.
 
-TMPDIR=`mktemp --tmpdir=$PWD -d`
+TMPDIR=`mktemp -d $PWD/tmp.XXXXXXXXXX`
 trap 'rm -rf "$TMPDIR"' 0 1 2 3 15
 
 echo "4711 stream tcp nowait root $PWD/$FTPD ftpd -A -l" > $TMPDIR/inetd.conf

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog              |    4 ++++
 tests/ftp-localhost.sh |    2 +-
 2 files changed, 5 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
GNU Inetutils 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]