Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 20 Aug 2013 02:01:24 +0000 (UTC)
From:      "George V. Neville-Neil" <gnn@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r325026 - head/java/eclipse-devel
Message-ID:  <201308200201.r7K21OkI059442@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: gnn (src,doc committer)
Date: Tue Aug 20 02:01:23 2013
New Revision: 325026
URL: http://svnweb.freebsd.org/changeset/ports/325026

Log:
  Move the destination of the patching into the work directory.
  
  Pointed out by: swills

Modified:
  head/java/eclipse-devel/Makefile

Modified: head/java/eclipse-devel/Makefile
==============================================================================
--- head/java/eclipse-devel/Makefile	Tue Aug 20 01:08:17 2013	(r325025)
+++ head/java/eclipse-devel/Makefile	Tue Aug 20 02:01:23 2013	(r325026)
@@ -274,9 +274,9 @@ post-patch:
 .endif
 
 pre-build:
-	@${CP} ${BUILD_WRKSRC}/build/eclipse-4.2.0-I20120608-1400-src/plugins/org.eclipse.ui.workbench/Eclipse\ UI/org/eclipse/ui/internal/keys/model/BindingModel.java ${PATCHDIR}
-	@${PATCH} -d ${PATCHDIR} -E -p0 -i ${PATCHDIR}/BindingModel.java.patch
-	@${CP} ${PATCHDIR}/BindingModel.java ${BUILD_WRKSRC}/build/eclipse-4.2.0-I20120608-1400-src/plugins/org.eclipse.ui.workbench/Eclipse\ UI/org/eclipse/ui/internal/keys/model/BindingModel.java
+	@${CP} ${BUILD_WRKSRC}/build/eclipse-4.2.0-I20120608-1400-src/plugins/org.eclipse.ui.workbench/Eclipse\ UI/org/eclipse/ui/internal/keys/model/BindingModel.java ${BUILD_WRKSRC}
+	@${PATCH} -d ${BUILD_WRKSRC} -E -p0 -i ${PATCHDIR}/BindingModel.java.patch
+	@${CP} ${BUILD_WRKSRC}/BindingModel.java ${BUILD_WRKSRC}/build/eclipse-4.2.0-I20120608-1400-src/plugins/org.eclipse.ui.workbench/Eclipse\ UI/org/eclipse/ui/internal/keys/model/BindingModel.java
 
 do-install:
 	@${RM} -rf ${PORTDESTDIR}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201308200201.r7K21OkI059442>