Source-Changes-HG archive

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

[src/trunk]: src/usr.sbin/sysinst Fix previous in case when BUILDID is passed...



details:   https://anonhg.NetBSD.org/src/rev/c6fe5bca1d1b
branches:  trunk
changeset: 835730:c6fe5bca1d1b
user:      martin <martin%NetBSD.org@localhost>
date:      Thu Sep 06 07:56:40 2018 +0000

description:
Fix previous in case when BUILDID is passed - the subdirectory has the
same name as the BUILDID (which already includes the trailing "Z", no need
to append it again)

diffstat:

 usr.sbin/sysinst/defs.h |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 0a8b93aae8fd -r c6fe5bca1d1b usr.sbin/sysinst/defs.h
--- a/usr.sbin/sysinst/defs.h   Thu Sep 06 06:46:25 2018 +0000
+++ b/usr.sbin/sysinst/defs.h   Thu Sep 06 07:56:40 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: defs.h,v 1.13 2018/09/05 12:49:55 martin Exp $ */
+/*     $NetBSD: defs.h,v 1.14 2018/09/06 07:56:40 martin Exp $ */
 
 /*
  * Copyright 1997 Piermont Information Systems Inc.
@@ -344,7 +344,7 @@
 #if defined(NETBSD_OFFICIAL_RELEASE)
 #define SYSINST_FTP_DIR                "pub/NetBSD/NetBSD-" REL
 #elif defined(BUILDID) && defined(REL_PATH)
-#define SYSINST_FTP_DIR                "pub/NetBSD-daily/" REL_PATH "/" BUILDID "Z"
+#define SYSINST_FTP_DIR                "pub/NetBSD-daily/" REL_PATH "/" BUILDID
 #elif defined(REL_PATH)
 #define SYSINST_FTP_DIR                "pub/NetBSD-daily/" REL_PATH
 #else



Home | Main Index | Thread Index | Old Index