This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9339819
)
Catch interdependencies for static builds too
author
Andy Dougherty
<doughera@lafayette.edu>
Tue, 26 May 2009 18:18:27 +0000
(14:18 -0400)
committer
Andy Dougherty
<doughera@lafayette.edu>
Tue, 26 May 2009 18:18:27 +0000
(14:18 -0400)
Makefile.SH
patch
|
blob
|
blame
|
history
diff --git
a/Makefile.SH
b/Makefile.SH
index
f3333e1
..
e53d73c
100644
(file)
--- a/
Makefile.SH
+++ b/
Makefile.SH
@@
-201,6
+201,14
@@
static_list=' '
for f in $static_ext; do
base=`echo "$f" | sed 's/.*\///'`
static_list="$static_list lib/auto/$f/$base\$(LIB_EXT)"
+ : Parallel makes reveal that we have some interdependencies
+ this_target="lib/auto/$f/$base\$(LIB_EXT)"
+ case $f in
+ Math/BigInt/FastCalc|Devel/NYTProf) extra_dep="$extra_dep
+$this_target: lib/auto/List/Util/Util\$(LIB_EXT)" ;;
+ Unicode/Normalize) extra_dep="$extra_dep
+$this_target: uni.data" ;;
+ esac
done
nonxs_list=' '