From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id B047058973 for ; Sat, 23 Jan 2016 19:04:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 51135E07D4; Sat, 23 Jan 2016 19:04:57 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id F1693E07D4 for ; Sat, 23 Jan 2016 19:04:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 245453409A4 for ; Sat, 23 Jan 2016 19:04:56 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 779D11067 for ; Sat, 23 Jan 2016 19:04:53 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1453575747.c4f06c7c3a4929b816596df752364d73fe6f73fe.dolsen@gentoo> Subject: [gentoo-commits] proj/gentoo-keys:master commit in: / X-VCS-Repository: proj/gentoo-keys X-VCS-Files: testpath X-VCS-Directories: / X-VCS-Committer: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: c4f06c7c3a4929b816596df752364d73fe6f73fe X-VCS-Branch: master Date: Sat, 23 Jan 2016 19:04:53 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 2f5cc6e2-1b26-472a-8465-794d3fcac614 X-Archives-Hash: 6544db815f67f5967242706b39d79b92 commit: c4f06c7c3a4929b816596df752364d73fe6f73fe Author: Brian Dolbec gentoo org> AuthorDate: Sat Jan 23 19:01:50 2016 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Sat Jan 23 19:02:27 2016 +0000 URL: https://gitweb.gentoo.org/proj/gentoo-keys.git/commit/?id=c4f06c7c testpath: Fix py2man symlink generation testpath | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/testpath b/testpath index e05940a..ad2b09e 100644 --- a/testpath +++ b/testpath @@ -32,6 +32,10 @@ ln README.md gkeys-gen/README.md ln README.md gkeys-ldap/README.md # Create the py2man symlinks for generating our man pages. -ln -s py2man gkeys/py2man -ln -s py2man gkeys-gen/py2man -ln -s py2man gkeys-ldap/py2man +cd gkeys +ln -s ../py2man py2man +cd ../gkeys-gen +ln -s ../py2man py2man +cd ../gkeys-ldap +ln -s ../py2man py2man +cd ..