Changeset 591

Show
Ignore:
Timestamp:
08/21/08 12:12:44
Author:
rachel
Message:

Solaris tar does not have -z option so extract CUnit as 2-stage process.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • openpgpsdk/trunk/Makefile

    r587 r591  
    5050cunit: 
    5151        if [ ! -d CUnit-2.1-0 ]; then \ 
    52                 tar xvfz CUnit-2.1-0-src.tar.gz; \ 
     52                        gunzip CUnit-2.1.0-src.tar.gz; \ 
     53                tar xvf CUnit-2.1-0-src.tar; \ 
    5354                (cd CUnit-2.1-0 && ./configure --prefix $(PWD) && make && make install); \ 
    5455        fi