Skip to content
Snippets Groups Projects
Commit 3e744c3c authored by Claus-Justus Heine's avatar Claus-Justus Heine
Browse files

Use TAR_PROGRAM and GZIP_PROGRAM instead of GZIP and TAR.

parent 7aab8620
No related branches found
No related tags found
No related merge requests found
......@@ -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:
......
# 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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment