ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/cvsroot/App-Staticperl/make-install-make.sh
Revision: 1.3
Committed: Sat Jul 9 18:26:27 2011 UTC (13 years ago) by root
Content type: application/x-sh
Branch: MAIN
CVS Tags: rel-1_42, rel-1_43, rel-1_41, rel-1_4
Changes since 1.2: +2 -2 lines
Log Message:
*** empty log message ***

File Contents

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