* [gentoo-commits] gentoo-x86 commit in dev-util/netbeans: ChangeLog netbeans-6.9-r2.ebuild
@ 2010-07-16 1:38 Miroslav Sulc (fordfrog)
0 siblings, 0 replies; only message in thread
From: Miroslav Sulc (fordfrog) @ 2010-07-16 1:38 UTC (permalink / raw
To: gentoo-commits
fordfrog 10/07/16 01:38:37
Modified: ChangeLog netbeans-6.9-r2.ebuild
Log:
netbeans-6.9-r2: removed error message when no class files are found (bug #328357)
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Revision Changes Path
1.143 dev-util/netbeans/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/netbeans/ChangeLog?rev=1.143&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/netbeans/ChangeLog?rev=1.143&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/netbeans/ChangeLog?r1=1.142&r2=1.143
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/netbeans/ChangeLog,v
retrieving revision 1.142
retrieving revision 1.143
diff -u -r1.142 -r1.143
--- ChangeLog 8 Jul 2010 22:10:01 -0000 1.142
+++ ChangeLog 16 Jul 2010 01:38:37 -0000 1.143
@@ -1,6 +1,9 @@
# ChangeLog for dev-util/netbeans
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/netbeans/ChangeLog,v 1.142 2010/07/08 22:10:01 fordfrog Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/netbeans/ChangeLog,v 1.143 2010/07/16 01:38:37 fordfrog Exp $
+
+ 16 Jul 2010; Miroslav Šulc <fordfrog@gentoo.org> netbeans-6.9-r2.ebuild:
+ Removed error message when no class files are found (bug #328357)
*netbeans-6.9-r2 (08 Jul 2010)
1.2 dev-util/netbeans/netbeans-6.9-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/netbeans/netbeans-6.9-r2.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/netbeans/netbeans-6.9-r2.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/netbeans/netbeans-6.9-r2.ebuild?r1=1.1&r2=1.2
Index: netbeans-6.9-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/netbeans/netbeans-6.9-r2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- netbeans-6.9-r2.ebuild 8 Jul 2010 22:10:01 -0000 1.1
+++ netbeans-6.9-r2.ebuild 16 Jul 2010 01:38:37 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/netbeans/netbeans-6.9-r2.ebuild,v 1.1 2010/07/08 22:10:01 fordfrog Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/netbeans/netbeans-6.9-r2.ebuild,v 1.2 2010/07/16 01:38:37 fordfrog Exp $
EAPI="2"
WANT_SPLIT_ANT="true"
@@ -457,7 +457,11 @@
# Clean up nbbuild
einfo "Removing prebuilt *.class files from nbbuild"
- find "${S}" -name "*.class" | xargs rm -v
+ local class_files=`find "${S}" -name "*.class"`
+
+ if [ -n "${class_files}" ] ; then
+ rm -v ${class_files}
+ fi
if [ -z "${JAVA_PKG_NB_USE_BUNDLED}" ] ; then
place_unpack_symlinks
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2010-07-16 1:38 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-07-16 1:38 [gentoo-commits] gentoo-x86 commit in dev-util/netbeans: ChangeLog netbeans-6.9-r2.ebuild Miroslav Sulc (fordfrog)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox