From: Alexandre Duret-Lutz Date: Fri, 23 Jan 2004 22:47:55 +0000 (+0000) Subject: * lib/am/python.am (uninstall-%DIR%PYTHON): Remove extra `;'s. X-Git-Tag: Release-1-8b~75 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=96bd4b555ac27afd6085633739a0c3479550cb5f;p=automake.git * lib/am/python.am (uninstall-%DIR%PYTHON): Remove extra `;'s. Fix python10.test. --- diff --git a/ChangeLog b/ChangeLog index fd94a2ff..48a37999 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2004-01-23 Alexandre Duret-Lutz + * lib/am/python.am (uninstall-%DIR%PYTHON): Remove extra `;'s. + Fix python10.test. + * m4/depout.m4 (_AM_OUTPUT_DEPENDENCY_COMMANDS): Use `s/xx//p' instead of `/xx/ s///p'; the latter fails when GNU sed is run with POSIXLY_CORRECT. Also strip superfluous -e. diff --git a/lib/am/python.am b/lib/am/python.am index f6f4daee..9af7f7e1 100644 --- a/lib/am/python.am +++ b/lib/am/python.am @@ -68,8 +68,8 @@ uninstall-%DIR%PYTHON: ?!BASE? @$(am__vpath_adj_setup) \ ?!BASE? list='$(%DIR%_PYTHON)'; dlist=''; for p in $$list; do\ ?BASE? @list='$(%DIR%_PYTHON)'; dlist=''; for p in $$list; do\ -?BASE? f=$(am__strip_dir); \ -?!BASE? $(am__vpath_adj); \ +?BASE? f=$(am__strip_dir) \ +?!BASE? $(am__vpath_adj) \ rm -f $(DESTDIR)$(%NDIR%dir)/$$f; \ ## This is to remove the .pyc and .pyo byte compiled versions (a bit ## of a hack).