diff options
author | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-06 11:29:58 +0000 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-06 11:29:58 +0000 |
commit | 72be44917bc19be536d1413c0f122cf5f2414263 (patch) | |
tree | de59e3cdd43e922654d43b2bbcb60e7e5936ed2c /configure | |
parent | Adding debian version 1.0-1. (diff) | |
download | clzip-72be44917bc19be536d1413c0f122cf5f2414263.tar.xz clzip-72be44917bc19be536d1413c0f122cf5f2414263.zip |
Merging upstream version 1.1~rc2.
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
Diffstat (limited to '')
-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. # |