From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 27 17:50:26 2003 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 28BE516A4C1 for ; Wed, 27 Aug 2003 17:50:26 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2374E43FD7 for ; Wed, 27 Aug 2003 17:50:20 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h7S0oHUp040197 for ; Wed, 27 Aug 2003 17:50:17 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h7S0oHjc040196; Wed, 27 Aug 2003 17:50:17 -0700 (PDT) Resent-Date: Wed, 27 Aug 2003 17:50:17 -0700 (PDT) Resent-Message-Id: <200308280050.h7S0oHjc040196@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Yen-Ming Lee Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C850416A4C0 for ; Wed, 27 Aug 2003 17:48:00 -0700 (PDT) Received: from utopia.leeym.com (utopia.leeym.com [61.218.64.93]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A19343FE1 for ; Wed, 27 Aug 2003 17:48:00 -0700 (PDT) (envelope-from leeym@utopia.leeym.com) Received: from localhost (localhost [127.0.0.1]) by utopia.leeym.com (Postfix) with ESMTP id B94413EA807 for ; Thu, 28 Aug 2003 08:47:58 +0800 (CST) Received: by utopia.leeym.com (Postfix, from userid 1000) id 737483E9B53; Thu, 28 Aug 2003 08:47:54 +0800 (CST) Message-Id: <20030828004754.737483E9B53@utopia.leeym.com> Date: Thu, 28 Aug 2003 08:47:54 +0800 (CST) From: Yen-Ming Lee To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/56062: fix MYSQL related typo in bsd.port.mk X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Yen-Ming Lee List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Aug 2003 00:50:26 -0000 >Number: 56062 >Category: ports >Synopsis: fix MYSQL related typo in bsd.port.mk >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Aug 27 17:50:17 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Yen-Ming Lee >Release: FreeBSD 5.1-RELEASE-p2 i386 >Organization: >Environment: System: FreeBSD utopia.leeym.com 5.1-RELEASE-p2 FreeBSD 5.1-RELEASE-p2 #4: Sun Aug 24 06:56:03 CST 2003 root@utopia.leeym.com:/mnt/obj/usr/src/sys/UTOPIA i386 >Description: s/MYSQL_323_LIBVER/MYSQL323_LIBVER/g this typo cause the ports failed to check if mysql-3.23 is installed. >How-To-Repeat: 1. install mysql-3.23 2. change directory into any port with USE_MYSQL 3. run "make -V MYSQL_VER" 4. it shows "40" (default version). >Fix: --- bsd.port.mk.diff begins here --- Index: bsd.port.mk =================================================================== RCS file: /home/pcvs/ports/Mk/bsd.port.mk,v retrieving revision 1.464 diff -u -r1.464 bsd.port.mk --- bsd.port.mk 27 Aug 2003 04:42:45 -0000 1.464 +++ bsd.port.mk 28 Aug 2003 00:42:19 -0000 @@ -1534,7 +1534,7 @@ MYSQL_VER= ${WANT_MYSQL_VER} .elif defined(WITH_MYSQL_VER) MYSQL_VER= ${WITH_MYSQL_VER} -.elif exists(${LOCALBASE}/lib/mysql/libmysqlclient.so.${MYSQL_323_LIBVER}) +.elif exists(${LOCALBASE}/lib/mysql/libmysqlclient.so.${MYSQL323_LIBVER}) MYSQL_VER= 323 .elif exists(${LOCALBASE}/lib/mysql/libmysqlclient.so.${MYSQL40_LIBVER}) MYSQL_VER= 40 --- bsd.port.mk.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: