From: Stefano Lattarini Date: Mon, 20 May 2013 09:25:04 +0000 (+0200) Subject: automake: cosmetic changes in indentation and line breaks X-Git-Tag: v1.16~85 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fb653b7d4b2c9098223b41ac96034059790f00cd;p=thirdparty%2Fautomake.git automake: cosmetic changes in indentation and line breaks * bin/automake.in (handle_LIBOBJS_or_ALLOCA): Here. Signed-off-by: Stefano Lattarini --- diff --git a/bin/automake.in b/bin/automake.in index 933f9b910..31d78f993 100644 --- a/bin/automake.in +++ b/bin/automake.in @@ -2110,24 +2110,22 @@ sub handle_lib_objects sub handle_LIBOBJS_or_ALLOCA { my ($var) = @_; - my $dir = ''; # If LIBOBJS files must be built in another directory we have # to define LIBOBJDIR and ensure the files get cleaned. # Otherwise LIBOBJDIR can be left undefined, and the cleaning # is achieved by 'rm -f *.$(OBJEXT)' in compile.am. - if ($config_libobj_dir - && $relative_dir ne $config_libobj_dir) + if ($config_libobj_dir && $relative_dir ne $config_libobj_dir) { # In the top-level Makefile we do not use $(top_builddir), because # we are already there, and since the targets are built without # a $(top_builddir), it helps BSD Make to match them with # dependencies. $dir = "$config_libobj_dir/" - if $config_libobj_dir ne '.'; + if $config_libobj_dir ne '.'; $dir = backname ($relative_dir) . "/$dir" - if $relative_dir ne '.'; + if $relative_dir ne '.'; define_variable ('LIBOBJDIR', "$dir", INTERNAL); $clean_files{"\$($var)"} = MOSTLY_CLEAN; # If LTLIBOBJS is used, we must also clear LIBOBJS (which might