You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by al...@apache.org on 2007/04/03 20:41:46 UTC

svn commit: r525239 - /incubator/wicket/branches/wicket-1.x/eclipse.sh

Author: almaw
Date: Tue Apr  3 11:41:45 2007
New Revision: 525239

URL: http://svn.apache.org/viewvc?view=rev&rev=525239
Log:
use -exec on find not xargs, as it doesn't work for me otherwise

Modified:
    incubator/wicket/branches/wicket-1.x/eclipse.sh

Modified: incubator/wicket/branches/wicket-1.x/eclipse.sh
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/eclipse.sh?view=diff&rev=525239&r1=525238&r2=525239
==============================================================================
--- incubator/wicket/branches/wicket-1.x/eclipse.sh (original)
+++ incubator/wicket/branches/wicket-1.x/eclipse.sh Tue Apr  3 11:41:45 2007
@@ -1,3 +1,3 @@
 #/bin/sh
 mvn eclipse:eclipse
-find jdk-1.4 -name ".classpath" | xargs sed -i "" -e "s/org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.launching.JRE_CONTAINER\/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType\/J2SE-1.4/g" 
+find jdk-1.4 -name .classpath -exec sed -i -e 's/org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.launching.JRE_CONTAINER\/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType\/J2SE-1.4/g' {} \;