[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Automake-NG] [FYI] [ng] rename: .am.* -> am.*
From: |
Stefano Lattarini |
Subject: |
Re: [Automake-NG] [FYI] [ng] rename: .am.* -> am.* |
Date: |
Tue, 24 Jul 2012 16:13:31 +0200 |
On 07/24/2012 03:40 PM, Stefano Lattarini wrote:
> This is the complete list of renames done in this patch:
>
> .am.clean-cmd.f -> am.clean-cmd.f
> .am.clean-cmd.d -> am.clean-cmd.d
> .am.rm-f -> am.rm-f
> .am.rm-rf -> am.rm-rf
>
Oops, the renaming was actually incomplete :-/
Consider this squashed in:
diff --git a/lib/am/header-vars.am b/lib/am/header-vars.am
index 69a6f92..4769cba 100644
--- a/lib/am/header-vars.am
+++ b/lib/am/header-vars.am
@@ -298,8 +298,8 @@ endef
am.rm-f = $(if $(strip $1),rm -f $(strip $1)$(am.chars.newline))
am.rm-rf = $(if $(strip $1),rm -rf $(strip $1)$(am.chars.newline))
-am.clean-cmd.f = $(call am.xargs-map,.am.rm-f,$1)
-am.clean-cmd.d = $(call am.xargs-map,.am.rm-rf,$1)
+am.clean-cmd.f = $(call am.xargs-map,am.rm-f,$1)
+am.clean-cmd.d = $(call am.xargs-map,am.rm-rf,$1)
## Some derived variables that have been found to be useful.
pkgdatadir = $(datadir)/@PACKAGE@
Sorry for the noise,
Stefano