Module Name: src
Committed By: jmmv
Date: Sat Feb 15 01:54:17 UTC 2014
Modified Files:
src/usr.sbin/postinstall: postinstall
Log Message:
Fix path to atf-run.hooks after import of atf-0.19.
Problem found by martin@. Not spotted by me, I think, because I always use
postinstall on an etc.tgz file and forgot about this code path.
To generate a diff of this commit:
cvs rdiff -u -r1.163 -r1.164 src/usr.sbin/postinstall/postinstall
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.sbin/postinstall/postinstall
diff -u src/usr.sbin/postinstall/postinstall:1.163 src/usr.sbin/postinstall/postinstall:1.164
--- src/usr.sbin/postinstall/postinstall:1.163 Wed Jan 29 12:56:28 2014
+++ src/usr.sbin/postinstall/postinstall Sat Feb 15 01:54:17 2014
@@ -1,6 +1,6 @@
#!/bin/sh
#
-# $NetBSD: postinstall,v 1.163 2014/01/29 12:56:28 skrll Exp $
+# $NetBSD: postinstall,v 1.164 2014/02/15 01:54:17 jmmv Exp $
#
# Copyright (c) 2002-2008 The NetBSD Foundation, Inc.
# All rights reserved.
@@ -1669,7 +1669,7 @@ do_atf()
failed=1
fi
if find_file_in_dirlist atf-run.hooks "atf-run.hooks" \
- "${SRC_DIR}/external/bsd/atf/dist/atf-run/sample" \
+ "${SRC_DIR}/external/bsd/atf/dist/tools/sample" \
"${SRC_DIR}/etc/atf"; then
# ${dir} is set by find_file_in_dirlist()
populate_dir "${op}" true "${dir}" "${DEST_DIR}/etc/atf" 644 \