From owner-svn-src-projects@FreeBSD.ORG Tue Nov 25 07:14:16 2014 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E44A85EC; Tue, 25 Nov 2014 07:14:16 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D19E7A2B; Tue, 25 Nov 2014 07:14:16 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sAP7EGrD083410; Tue, 25 Nov 2014 07:14:16 GMT (envelope-from ngie@FreeBSD.org) Received: (from ngie@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sAP7EG3f083408; Tue, 25 Nov 2014 07:14:16 GMT (envelope-from ngie@FreeBSD.org) Message-Id: <201411250714.sAP7EG3f083408@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: ngie set sender to ngie@FreeBSD.org using -f From: Garrett Cooper Date: Tue, 25 Nov 2014 07:14:16 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r275015 - projects/building-blocks/etc X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2014 07:14:17 -0000 Author: ngie Date: Tue Nov 25 07:14:16 2014 New Revision: 275015 URL: https://svnweb.freebsd.org/changeset/base/275015 Log: The shift; shift needs to be moved outside the .if ${MK_OPENSSL} conditional Modified: projects/building-blocks/etc/Makefile Modified: projects/building-blocks/etc/Makefile ============================================================================== --- projects/building-blocks/etc/Makefile Tue Nov 25 07:13:31 2014 (r275014) +++ projects/building-blocks/etc/Makefile Tue Nov 25 07:14:16 2014 (r275015) @@ -389,8 +389,8 @@ distrib-dirs: ${MTREES:N/*} if [ "${MK_OPENSSL}" != "no" ]; then \ ${INSTALL_SYMLINK} "$$2" \ "${DESTDIR}/usr/share/openssl/man/$$1"; \ - shift; shift; \ fi; \ + shift; shift; \ done .if ${MK_NLS} != "no" set - `grep "^[a-zA-Z]" ${.CURDIR}/nls.alias`; \