From: Nicholas Clark Date: Thu, 26 Feb 2009 08:34:36 +0000 (+0100) Subject: Correct the paths for the nonxs_ext targets, following the ext flattening. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=6c0ec79a2e9c445ac9999df2;p=p5sagit%2Fp5-mst-13.2.git Correct the paths for the nonxs_ext targets, following the ext flattening. (Static and dynamic each build a target in lib/auto, which was unchanged. nonxs_ext use a target inside the extension's directory, which was moved, but Makefile.SH had not been updated to reflect this.) --- diff --git a/Makefile.SH b/Makefile.SH index 240bfa9..0b80039 100644 --- a/Makefile.SH +++ b/Makefile.SH @@ -205,7 +205,8 @@ done nonxs_list=' ' for f in $nonxs_ext; do - nonxs_list="$nonxs_list ext/$f/pm_to_blib" + p=`echo "$f" | tr / -` + nonxs_list="$nonxs_list ext/$p/pm_to_blib" done dtrace_h=''