diff options
Diffstat (limited to 'lib/Automake/Makefile.am')
-rw-r--r-- | lib/Automake/Makefile.am | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/lib/Automake/Makefile.am b/lib/Automake/Makefile.am index 0858b6875..e4c2572f1 100644 --- a/lib/Automake/Makefile.am +++ b/lib/Automake/Makefile.am @@ -64,10 +64,9 @@ do_subst = in=`echo $@ | sed 's/\.[^.]*$$//'`; sed \ ## $(datadir) or other do_subst'ituted variables change. ## Use chmod a-w to prevent people from editing the wrong file by accident. Config.pm: Config.in Makefile - rm -f Config.tmp Config.pm - $(do_subst) $(srcdir)/Config.in >Config.tmp - chmod +x Config.tmp - chmod a-w Config.tmp - mv -f Config.tmp Config.pm + $(AM_V_GEN)rm -f Config.tmp Config.pm + $(AM_V_at)$(do_subst) $(srcdir)/Config.in >Config.tmp + $(AM_V_at)chmod a-w Config.tmp + $(AM_V_at)mv -f Config.tmp Config.pm EXTRA_DIST = Config.in |