Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
alberta3
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ians-nmh-siebert
alberta
alberta3
Commits
3e744c3c
Commit
3e744c3c
authored
Dec 5, 2003
by
Claus-Justus Heine
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
Makefile.am
+2
-2
2 additions, 2 deletions
Makefile.am
configure.ac
+3
-3
3 additions, 3 deletions
configure.ac
with
5 additions
and
5 deletions
Makefile.am
+
2
−
2
View file @
3e744c3c
...
...
@@ -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
:
...
...
This diff is collapsed.
Click to expand it.
configure.ac
+
3
−
3
View file @
3e744c3c
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.52)
AC_INIT([alberta], [1.2-pre
4
], [claus@mathematik.uni-freiburg.de])
AC_INIT([alberta], [1.2-pre
6
], [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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment