diff options
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -1,16 +1,16 @@ #! /bin/sh -# configure script for Clzip - A data compressor based on the LZMA algorithm +# configure script for Clzip - Data compressor based on the LZMA algorithm # Copyright (C) 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-04-05 +# Date of this version: 2010-12-07 args= no_create= pkgname=clzip -pkgversion=1.0 +pkgversion=1.1-rc2 progname=clzip srctrigger=clzip.h @@ -27,7 +27,7 @@ mandir='$(datadir)/man' sysconfdir='$(prefix)/etc' CC= CPPFLAGS= -CFLAGS='-Wall -W -O2 -std=gnu99' +CFLAGS='-Wall -W -O2' LDFLAGS= # Loop over all args @@ -80,7 +80,7 @@ while [ -n "$1" ] ; do bindir=`echo ${optarg} | sed -e 's,/$,,'` ;; --datadir* | --da*) datadir=`echo ${optarg} | sed -e 's,/$,,'` ;; - --infodir* | --in*) + --infodir* | --inf*) infodir=`echo ${optarg} | sed -e 's,/$,,'` ;; --mandir* | --ma*) mandir=`echo ${optarg} | sed -e 's,/$,,'` ;; @@ -166,7 +166,7 @@ echo "CFLAGS = ${CFLAGS}" echo "LDFLAGS = ${LDFLAGS}" rm -f Makefile cat > Makefile << EOF -# Makefile for Clzip - A data compressor based on the LZMA algorithm +# Makefile for Clzip - Data compressor based on the LZMA algorithm # Copyright (C) 2010 Antonio Diaz Diaz. # This file was generated automatically by configure. Do not edit. # |