From owner-svn-ports-all@freebsd.org Mon Dec 21 15:23:02 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id BBE9D4BDB34; Mon, 21 Dec 2020 15:23:02 +0000 (UTC) (envelope-from otis@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4D03BZ4vJ6z3km9; Mon, 21 Dec 2020 15:23:02 +0000 (UTC) (envelope-from otis@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9B41123F05; Mon, 21 Dec 2020 15:23:02 +0000 (UTC) (envelope-from otis@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0BLFN29G027129; Mon, 21 Dec 2020 15:23:02 GMT (envelope-from otis@FreeBSD.org) Received: (from otis@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0BLFN2H0027127; Mon, 21 Dec 2020 15:23:02 GMT (envelope-from otis@FreeBSD.org) Message-Id: <202012211523.0BLFN2H0027127@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: otis set sender to otis@FreeBSD.org using -f From: Juraj Lutter Date: Mon, 21 Dec 2020 15:23:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r558838 - head/sysutils/e2fsprogs X-SVN-Group: ports-head X-SVN-Commit-Author: otis X-SVN-Commit-Paths: head/sysutils/e2fsprogs X-SVN-Commit-Revision: 558838 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Dec 2020 15:23:02 -0000 Author: otis Date: Mon Dec 21 15:23:01 2020 New Revision: 558838 URL: https://svnweb.freebsd.org/changeset/ports/558838 Log: sysutils/e2fsprogs: Fix pkg-install Fix pkg-install script where a closing ']' was missing. Submitted by: Giacomo Olgeni Reviewed by: osa (mentor), mandree Approved by: osa (mentor), mandree Differential Revision: https://reviews.freebsd.org/D27693 Modified: head/sysutils/e2fsprogs/Makefile head/sysutils/e2fsprogs/pkg-install Modified: head/sysutils/e2fsprogs/Makefile ============================================================================== --- head/sysutils/e2fsprogs/Makefile Mon Dec 21 15:22:44 2020 (r558837) +++ head/sysutils/e2fsprogs/Makefile Mon Dec 21 15:23:01 2020 (r558838) @@ -3,7 +3,7 @@ PORTNAME= e2fsprogs PORTVERSION= 1.45.6 -PORTREVISION?= 4 +PORTREVISION?= 5 CATEGORIES?= sysutils MASTER_SITES= KERNEL_ORG/linux/kernel/people/tytso/${PORTNAME}/v${PORTVERSION} Modified: head/sysutils/e2fsprogs/pkg-install ============================================================================== --- head/sysutils/e2fsprogs/pkg-install Mon Dec 21 15:22:44 2020 (r558837) +++ head/sysutils/e2fsprogs/pkg-install Mon Dec 21 15:23:01 2020 (r558838) @@ -10,7 +10,7 @@ POST-INSTALL) # symbolic links by hard links if possible (pkg ships them as symlinks) d1=${PKG_ROOTDIR}/sbin/ ; dev1=$(stat -Lf %Xd "$d1") d2=${PKG_ROOTDIR}${PKG_PREFIX}/sbin/ ; dev2=$(stat -Lf %Xd "$d2") - if [ "$dev1" = "$dev2" ] && [ "$(realpath "$d1")" != "$(realpath "$d2")"; then + if [ "$dev1" = "$dev2" ] && [ "$(realpath "$d1")" != "$(realpath "$d2")" ]; then for i in e2fsck fsck_ext2fs ; do ln -fhP ${d1}${i} ${d2}${i} done