X-Recipient: archive-cygwin AT delorie DOT com X-Spam-Check-By: sourceware.org Message-ID: <482DB937.2040004@x-ray.at> Date: Fri, 16 May 2008 18:41:27 +0200 From: Reini Urban User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; de-AT; rv:1.8.1.13) Gecko/20080313 SeaMonkey/1.1.9 MIME-Version: 1.0 To: Cygwin List , cygwin-ports-general AT lists DOT sourceforge DOT net Subject: DIFF_EXCLUDES patch Content-Type: multipart/mixed; boundary="------------010703010203010407040608" X-IsSubscribed: yes Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com --------------010703010203010407040608 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Yaakov, I needed the following patch with this example DIFF_EXCLUDES="-x build" It works without the attached patch if you do DIFF_EXCLUDES=" -x build" but for safety please apply it. -- Reini Urban http://phpwiki.org/ http://murbreak.at/ --------------010703010203010407040608 Content-Type: text/x-patch; name="cygport-DIFF_EXCLUDES.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="cygport-DIFF_EXCLUDES.patch" --- /bin/cygport~ 2008-04-16 05:39:53.001000000 +0000 +++ /bin/cygport 2008-05-16 16:38:51.171875000 +0000 @@ -1811,7 +1811,7 @@ case ${DIFF_EXCLUDES} in -x*) - diff_excludes_x+="${DIFF_EXCLUDES}"; + diff_excludes_x+=" ${DIFF_EXCLUDES}"; ;; *) for exclude in ${DIFF_EXCLUDES} --------------010703010203010407040608 Content-Type: text/plain; charset=us-ascii -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/ --------------010703010203010407040608--