/hg/icedtea-web: Changed to use rmdir instead of rm -rf for laun...

asu at icedtea.classpath.org asu at icedtea.classpath.org
Tue Oct 26 08:59:49 PDT 2010


changeset dfd749c077c3 in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=dfd749c077c3
author: Andrew Su <asu at redhat.com>
date: Tue Oct 26 12:01:22 2010 -0400

	Changed to use rmdir instead of rm -rf for launcher directory.


diffstat:

2 files changed, 8 insertions(+), 1 deletion(-)
ChangeLog   |    5 +++++
Makefile.am |    4 +++-

diffs (26 lines):

diff -r b1b876d99849 -r dfd749c077c3 ChangeLog
--- a/ChangeLog	Mon Oct 25 17:16:13 2010 -0400
+++ b/ChangeLog	Tue Oct 26 12:01:22 2010 -0400
@@ -1,3 +1,8 @@ 2010-10-25  Omair Majid  <omajid at redhat.
+2010-10-26  Andrew Su  <asu at redhat.com>
+
+	* Makefile.am: Split rm -rf into rm -f and rmdir for launcher
+	directory.
+
 2010-10-25  Omair Majid  <omajid at redhat.com>
 
 	* netx/net/sourceforge/jnlp/ShortcutDesc.java:
diff -r b1b876d99849 -r dfd749c077c3 Makefile.am
--- a/Makefile.am	Mon Oct 25 17:16:13 2010 -0400
+++ b/Makefile.am	Tue Oct 26 12:01:22 2010 -0400
@@ -188,7 +188,9 @@ PLUGIN_OBJECTS=IcedTeaNPPlugin.o IcedTea
 	$(CC) $(LAUNCHER_LINK) $(PLUGIN_LAUNCHER_OBJECTS)
 
 clean-IcedTeaPlugin:
-	rm -rf $(PLUGIN_DIR)/launcher
+	rm -f $(PLUGIN_DIR)/launcher/*.o
+	rm -f $(PLUGIN_DIR)/launcher/pluginappletviewer
+	rmdir $(PLUGIN_DIR)/launcher
 	rm -f $(PLUGIN_DIR)/*.o
 	rm -f $(PLUGIN_DIR)/IcedTeaPlugin.so
 	if [ $(abs_top_srcdir) != $(abs_top_builddir) ]; then \



More information about the distro-pkg-dev mailing list