ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/App-Staticperl/make-install-make.sh
Revision: 1.1
Committed: Sat Apr 2 11:00:34 2011 UTC (13 years, 2 months ago) by root
Content type: application/x-sh
Branch: MAIN
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     if find blib/arch/auto -type f | grep -q -v .exists; then
8     echo Probably an XS module, rebuilding perl
9     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