diff options
author | Karl Berry <karl@freefriends.org> | 2014-04-20 22:56:10 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2014-04-20 22:56:10 +0000 |
commit | ce5dd4137c8f88f9449e78ea4e02081bb589432e (patch) | |
tree | 1482a78c9484fb143211d3c1bb56d6c95f8393a1 /Build/source/utils/asymptote/Makefile.in | |
parent | d7e9f3fbc05b16e08afeb5b2569cb39a9b03e661 (diff) |
asy 2.25 sources
git-svn-id: svn://tug.org/texlive/trunk@33565 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/utils/asymptote/Makefile.in')
-rw-r--r-- | Build/source/utils/asymptote/Makefile.in | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/Build/source/utils/asymptote/Makefile.in b/Build/source/utils/asymptote/Makefile.in index 3100cb10cd1..28be5fcc2ba 100644 --- a/Build/source/utils/asymptote/Makefile.in +++ b/Build/source/utils/asymptote/Makefile.in @@ -3,7 +3,9 @@ ARCH = unix POLL = poll -GC = @GCDIR@ +GCVERSION = @GCVERSION@ +GC = gc-$(GCVERSION) +LIBATOMIC = libatomic_ops-$(GCVERSION) GCOPTIONS = @GCOPTIONS@ GCLIB = @GCLIB@ GCPPLIB = @GCPPLIB@ @@ -128,8 +130,11 @@ $(GCLIB): $(GC).tar.gz gunzip -c $(GC).tar.gz > $(GC).tar tar -xf $(GC).tar rm -f $(GC).tar - if test "$(GC)" = "gc6.8"; then \ - cd $(GC)/include && patch < ../../patches/gc6.8_AIX.patch; \ + if test -e $(LIBATOMIC).tar.gz; then \ + gunzip -c $(LIBATOMIC).tar.gz > $(LIBATOMIC).tar; \ + tar -xf $(LIBATOMIC).tar; \ + rm -f $(LIBATOMIC).tar; \ + mv $(LIBATOMIC) $(GC)/libatomic_ops; \ fi if test "$(GC)" = "gc-7.0"; then \ cd $(GC)/include/private && \ |