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 4B6231381F3 for ; Tue, 6 Nov 2012 22:41:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A327321C033; Tue, 6 Nov 2012 22:41:31 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 1FA1C21C033 for ; Tue, 6 Nov 2012 22:41:30 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6034233D99D for ; Tue, 6 Nov 2012 22:41:30 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id B0261E5442 for ; Tue, 6 Nov 2012 22:41:27 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <1352241179.ec60e20331c7becd1b46ca38291f4c75db25e168.WilliamH@OpenRC> Subject: [gentoo-commits] proj/openrc:master commit in: sh/ X-VCS-Repository: proj/openrc X-VCS-Files: sh/tmpfiles.sh.in X-VCS-Directories: sh/ X-VCS-Committer: WilliamH X-VCS-Committer-Name: William Hubbs X-VCS-Revision: ec60e20331c7becd1b46ca38291f4c75db25e168 X-VCS-Branch: master Date: Tue, 6 Nov 2012 22:41:27 +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: 8ea6032b-d1e4-4f1e-a569-47628d18e960 X-Archives-Hash: 0315f6c1e029233ca448e8f0e094e918 commit: ec60e20331c7becd1b46ca38291f4c75db25e168 Author: William Hubbs gmail com> AuthorDate: Tue Nov 6 22:32:59 2012 +0000 Commit: William Hubbs gentoo org> CommitDate: Tue Nov 6 22:32:59 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/openrc.git;a=commit;h=ec60e203 tmpfiles: fix bashism reported-by: gentoo.org> --- sh/tmpfiles.sh.in | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/sh/tmpfiles.sh.in b/sh/tmpfiles.sh.in index a5041bb..ca0cbc3 100755 --- a/sh/tmpfiles.sh.in +++ b/sh/tmpfiles.sh.in @@ -232,7 +232,7 @@ if [ $(( CLEAN )) -eq 1 ] ; then exit 1 fi -if [ "$CREATE$REMOVE" == '00' ]; then +if [ "$CREATE$REMOVE" = '00' ]; then printf 'usage: %s [--create] [--remove] [--clean] [--verbose] [--dry-run]\n' "${0##*/}" exit 1 fi