From: Stefano Lattarini Date: Sat, 21 Jul 2012 13:52:07 +0000 (+0200) Subject: [ng] automake: inline '&handle_install' X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=747774e04541f340524910146ebf450d2c8610e0;p=thirdparty%2Fautomake.git [ng] automake: inline '&handle_install' * automake.in (handle_install): Delete, inlined ... (generate_makefile): ... in here, as it had become a trivial one-liner. Signed-off-by: Stefano Lattarini --- diff --git a/automake.in b/automake.in index b1875fd22..e52a67ad8 100644 --- a/automake.in +++ b/automake.in @@ -3926,13 +3926,6 @@ sub handle_footer $output_trailer .= file_contents ('footer', new Automake::Location); } - -# Generate 'make install' rules. -sub handle_install () -{ - almost_verbatim ('install'); -} - # Generate "make all" and "make check" rules. sub handle_all_and_check () { @@ -6981,7 +6974,7 @@ sub generate_makefile ($$) $output_rules .= "install-binPROGRAMS: install-nobase_libLTLIBRARIES\n\n"; } - handle_install; + almost_verbatim ('install'); handle_clean ($makefile); handle_factored_dependencies;