From 3e744c3c60efebec03c2857b192b44f3072cef55 Mon Sep 17 00:00:00 2001 From: Claus-Justus Heine <Claus-Justus.Heine@IANS.Uni-Stuttgart.DE> Date: Fri, 5 Dec 2003 12:57:27 +0000 Subject: [PATCH] Use TAR_PROGRAM and GZIP_PROGRAM instead of GZIP and TAR. --- Makefile.am | 4 ++-- configure.ac | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile.am b/Makefile.am index 8953a00..2379596 100644 --- a/Makefile.am +++ b/Makefile.am @@ -24,11 +24,11 @@ pkgdata_DATA = $(DEMO).tar.gz demo-tarball: $(DEMO).tar.gz $(DEMO).tar.gz: $(DEMO) - $(TAR) cf - $(DEMO) | $(GZIP) -9 > $@ + $(TAR_PROGRAM) cf - $(DEMO) | $(GZIP_PROGRAM) -9 > $@ $(DEMO): DEMO mkdir $@ ; cd $@ ; \ - ( cd ../DEMO ; $(TAR) cf - . ) | $(TAR) xf - + ( cd ../DEMO ; $(TAR_PROGRAM) cf - . ) | $(TAR_PROGRAM) xf - rm -f $@/src/[0-9]d/Makefile.in clean-local: diff --git a/configure.ac b/configure.ac index 7fd5e18..0d074a9 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ(2.52) -AC_INIT([alberta], [1.2-pre4], [claus@mathematik.uni-freiburg.de]) +AC_INIT([alberta], [1.2-pre6], [claus@mathematik.uni-freiburg.de]) AC_CONFIG_SRCDIR([ALBERTA/src/Common/alberta.h]) AM_MAINTAINER_MODE @@ -38,8 +38,8 @@ AC_PREFIX_DEFAULT([`pwd`]) # Checks for programs. AC_PROG_INSTALL AC_PROG_LN_S -AC_CHECK_PROGS([GZIP],[gzip]) -AC_CHECK_PROGS([TAR],[gtar tar]) +AC_CHECK_PROGS([GZIP_PROGRAM],[gzip]) +AC_CHECK_PROGS([TAR_PROGRAM],[gtar tar]) # Compiler characteristics dnl -- GitLab