diff options
Diffstat (limited to '')
-rwxr-xr-x | configure | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,16 +1,16 @@ #! /bin/sh -# configure script for Plzip - A parallel version of the lzip data compressor +# configure script for Plzip - A parallel compressor compatible with lzip # Copyright (C) 2009, 2010 Antonio Diaz Diaz. # # This configure script is free software: you have unlimited permission # to copy, distribute and modify it. # -# Date of this version: 2010-01-24 +# Date of this version: 2010-01-31 args= no_create= pkgname=plzip -pkgversion=0.3 +pkgversion=0.4 progname=plzip srctrigger=plzip.h @@ -135,7 +135,7 @@ if [ -z "${CXX}" ] ; then # Let the user override the test. fi echo -if [ -z ${no_create} ] ; then +if [ -z "${no_create}" ] ; then echo "creating config.status" rm -f config.status cat > config.status << EOF @@ -166,7 +166,7 @@ echo "CXXFLAGS = ${CXXFLAGS}" echo "LDFLAGS = ${LDFLAGS}" rm -f Makefile cat > Makefile << EOF -# Makefile for Plzip - A parallel version of the lzip data compressor +# Makefile for Plzip - A parallel compressor compatible with lzip # Copyright (C) 2009, 2010 Antonio Diaz Diaz. # This file was generated automatically by configure. Do not edit. # |