[RFC] icedtea-web: make clean errors when building in a separate directory
Deepak Bhole
dbhole at redhat.com
Mon Oct 25 08:10:27 PDT 2010
* Andrew Su <asu at redhat.com> [2010-10-25 11:05]:
> Hi,
>
> This patch fixes the order of cleaning the directory for the "launcher".
> It was removing launcher folder after trying to rmdir the icedteanp folder (this folder is not empty but folders are not considered "stuff" inside the folder).
> This patch just reorders it to remove the launcher folder before doing the rest of the clean.
>
> Makefile.am:
> (clean-IcedTeaPlugin): Remove launcher folder first
> (clean-plugin): removed called to remove launcher folder
>
> Cheers,
> Andrew
Looks good! OK for HEAD.
Cheers,
Deepak
> diff -r eb998ed0ab1a Makefile.am
> --- a/Makefile.am Fri Oct 22 10:44:12 2010 -0400
> +++ b/Makefile.am Mon Oct 25 10:45:44 2010 -0400
> @@ -188,6 +188,7 @@
> $(CC) $(LAUNCHER_LINK) $(PLUGIN_LAUNCHER_OBJECTS)
>
> clean-IcedTeaPlugin:
> + rm -rf $(PLUGIN_DIR)/launcher
> rm -f $(PLUGIN_DIR)/*.o
> rm -f $(PLUGIN_DIR)/IcedTeaPlugin.so
> if [ $(abs_top_srcdir) != $(abs_top_builddir) ]; then \
> @@ -203,7 +204,6 @@
> touch stamps/plugin.stamp
>
> clean-plugin: $(ICEDTEAPLUGIN_CLEAN)
> - rm -rf $(PLUGIN_DIR)/launcher
> rm -f stamps/plugin.stamp
>
> liveconnect-source-files.txt:
More information about the distro-pkg-dev
mailing list