From: Alexandre Duret-Lutz Date: Tue, 24 Sep 2002 20:12:46 +0000 (+0000) Subject: * lib/am/ltlib.am (clean-%DIR%LTLIBRARIES): Use $$dir in make X-Git-Tag: Release-1-7~9 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=9adde81dba3776b9e9bd0b2d33bb2944e52ba344;p=automake.git * lib/am/ltlib.am (clean-%DIR%LTLIBRARIES): Use $$dir in make command. --- diff --git a/ChangeLog b/ChangeLog index 22c6eb7a..f2bfcfd1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2002-09-24 Rainer Orth + + * lib/am/ltlib.am (clean-%DIR%LTLIBRARIES): Use $$dir in make + command. + 2002-09-24 Alexandre Duret-Lutz * automake.in (handle_single_transform_list): Revert the change diff --git a/lib/am/ltlib.am b/lib/am/ltlib.am index 102ce7df..56ba9d5c 100644 --- a/lib/am/ltlib.am +++ b/lib/am/ltlib.am @@ -82,7 +82,7 @@ clean-%DIR%LTLIBRARIES: ## directory where the shared object is created. @list='$(%DIR%_LTLIBRARIES)'; for p in $$list; do \ dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ - test "$dir" = "$$p" && dir=.; \ + test "$$dir" = "$$p" && dir=.; \ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done