source: main/trunk/greenstone2/runtime-src/packages/security/CASCADE-MAKE/ZLIB.sh@ 28870

Last change on this file since 28870 was 28870, checked in by ak19, 10 years ago

Correcting the check for whether configure has to be re-run on the zlib package or not.

  • Property svn:executable set to *
File size: 618 bytes
Line 
1#!/bin/bash
2
3cd $securitydir/$compiledir
4prefix=$installdir
5#echo `pwd`
6
7# If doing a make clean or distclean
8if [ "x$1" != "x" ]; then
9 make $1
10 exit 0
11fi
12
13# else, configure, make, make install
14
15# configure, but only if we haven't already
16if [ ! -e configure.log ] ; then
17 ./configure --prefix=$prefix
18fi
19
20if [ $? != 0 ] ; then
21 echo "Error encountered when configuring $0"
22 exit 1
23fi
24
25# make
26make
27if [ $? != 0 ] ; then
28 echo "Error encountered making $0"
29 exit 1
30fi
31
32# make install
33make install
34if [ $? != 0 ] ; then
35 echo "Error encountered when installing $0"
36 exit 1
37fi
38
39cd $securitydir
Note: See TracBrowser for help on using the repository browser.