ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/cvsroot/App-Staticperl/make-install-make.sh
Revision: 1.4
Committed: Thu Jan 16 20:12:47 2014 UTC (10 years, 5 months ago) by root
Content type: application/x-sh
Branch: MAIN
CVS Tags: rel-1_46, rel-1_44, rel-1_45
Changes since 1.3: +3 -3 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 #! sh
2
3 "$MAKE" || exit
4
5 if find blib/arch/auto -type f \( -name "*.a" -o -name "*.obj" -o -name "*.lib" \) | grep -q .; then
6 echo Probably a static XS module, rebuilding perl
7 if "$MAKE" all perl; then
8 mv perl "$PERL_PREFIX"/bin/perl~ \
9 && rm -f "$PERL_PREFIX"/bin/perl \
10 && mv "$PERL_PREFIX"/bin/perl~ "$PERL_PREFIX"/bin/perl
11 "$MAKE" -f Makefile.aperl map_clean
12 else
13 "$MAKE" -f Makefile.aperl map_clean
14 exit 1
15 fi
16 fi
17
18 "$MAKE" install UNINST=1 || exit
19
20 "$PERL_PREFIX"/bin/SP-patch-postinstall
21