Skip to content

Commit acbbc90

Browse files
committed
fix a compilatoin error with recent Vienna RNA package.
1 parent ab94dce commit acbbc90

File tree

10 files changed

+496
-375
lines changed

10 files changed

+496
-375
lines changed

Makefile.in

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# Makefile.in generated by automake 1.15 from Makefile.am.
1+
# Makefile.in generated by automake 1.16.1 from Makefile.am.
22
# @configure_input@
33

4-
# Copyright (C) 1994-2014 Free Software Foundation, Inc.
4+
# Copyright (C) 1994-2018 Free Software Foundation, Inc.
55

66
# This Makefile.in is free software; the Free Software Foundation
77
# gives unlimited permission to copy and/or distribute it,
@@ -138,7 +138,7 @@ am__recursive_targets = \
138138
$(RECURSIVE_CLEAN_TARGETS) \
139139
$(am__extra_recursive_targets)
140140
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
141-
cscope distdir dist dist-all distcheck
141+
cscope distdir distdir-am dist dist-all distcheck
142142
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \
143143
$(LISP)config.h.in
144144
# Read a list of newline-separated strings from the standard input,
@@ -345,8 +345,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
345345
echo ' $(SHELL) ./config.status'; \
346346
$(SHELL) ./config.status;; \
347347
*) \
348-
echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
349-
cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
348+
echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles)'; \
349+
cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles);; \
350350
esac;
351351

352352
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -479,7 +479,10 @@ distclean-tags:
479479
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
480480
-rm -f cscope.out cscope.in.out cscope.po.out cscope.files
481481

482-
distdir: $(DISTFILES)
482+
distdir: $(BUILT_SOURCES)
483+
$(MAKE) $(AM_MAKEFLAGS) distdir-am
484+
485+
distdir-am: $(DISTFILES)
483486
$(am__remove_distdir)
484487
test -d "$(distdir)" || mkdir "$(distdir)"
485488
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
@@ -544,7 +547,7 @@ distdir: $(DISTFILES)
544547
! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
545548
|| chmod -R a+r "$(distdir)"
546549
dist-gzip: distdir
547-
tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
550+
tardir=$(distdir) && $(am__tar) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).tar.gz
548551
$(am__post_remove_distdir)
549552

550553
dist-bzip2: distdir
@@ -570,7 +573,7 @@ dist-shar: distdir
570573
@echo WARNING: "Support for shar distribution archives is" \
571574
"deprecated." >&2
572575
@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
573-
shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
576+
shar $(distdir) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).shar.gz
574577
$(am__post_remove_distdir)
575578

576579
dist-zip: distdir
@@ -588,7 +591,7 @@ dist dist-all:
588591
distcheck: dist
589592
case '$(DIST_ARCHIVES)' in \
590593
*.tar.gz*) \
591-
GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
594+
eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).tar.gz | $(am__untar) ;;\
592595
*.tar.bz2*) \
593596
bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
594597
*.tar.lz*) \
@@ -598,7 +601,7 @@ distcheck: dist
598601
*.tar.Z*) \
599602
uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
600603
*.shar.gz*) \
601-
GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
604+
eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).shar.gz | unshar ;;\
602605
*.zip*) \
603606
unzip $(distdir).zip ;;\
604607
esac

0 commit comments

Comments
 (0)