mirror of https://git.tukaani.org/xz.git
Build: Use $(SHELL) instead of sh to run scripts in Makefile.am
This commit is contained in:
parent
a26dece347
commit
f361d9ae85
14
Makefile.am
14
Makefile.am
|
@ -84,22 +84,22 @@ dist-hook:
|
||||||
$(MKDIR_P) "$$dest/txt" && \
|
$(MKDIR_P) "$$dest/txt" && \
|
||||||
for FILE in $(manfiles); do \
|
for FILE in $(manfiles); do \
|
||||||
BASE=`basename $$FILE .1` && \
|
BASE=`basename $$FILE .1` && \
|
||||||
sh "$(srcdir)/build-aux/manconv.sh" ascii \
|
$(SHELL) "$(srcdir)/build-aux/manconv.sh" ascii \
|
||||||
< "$(srcdir)/$$FILE" \
|
< "$(srcdir)/$$FILE" \
|
||||||
> "$$dest/txt/$$BASE.txt"; \
|
> "$$dest/txt/$$BASE.txt"; \
|
||||||
done; \
|
done; \
|
||||||
fi
|
fi
|
||||||
cd "$(distdir)" && sh "build-aux/license-check.sh"
|
cd "$(distdir)" && $(SHELL) "build-aux/license-check.sh"
|
||||||
|
|
||||||
# This works with GNU tar and gives cleaner package than normal 'make dist'.
|
# This works with GNU tar and gives cleaner package than normal 'make dist'.
|
||||||
# This also ensures that the man page translations are up to date (dist-hook
|
# This also ensures that the man page translations are up to date (dist-hook
|
||||||
# would be too late for that).
|
# would be too late for that).
|
||||||
mydist:
|
mydist:
|
||||||
sh "$(srcdir)/src/liblzma/validate_map.sh"
|
$(SHELL) "$(srcdir)/src/liblzma/validate_map.sh"
|
||||||
cd "$(srcdir)/po4a" && sh update-po
|
cd "$(srcdir)/po4a" && $(SHELL) update-po
|
||||||
VERSION=$(VERSION); \
|
VERSION=$(VERSION); \
|
||||||
if test -d "$(srcdir)/.git" && type git > /dev/null 2>&1; then \
|
if test -d "$(srcdir)/.git" && type git > /dev/null 2>&1; then \
|
||||||
sh "$(srcdir)/build-aux/license-check.sh" || exit 1; \
|
$(SHELL) "$(srcdir)/build-aux/license-check.sh" || exit 1; \
|
||||||
SNAPSHOT=`cd "$(srcdir)" && git describe --abbrev=4 | cut -b2-`; \
|
SNAPSHOT=`cd "$(srcdir)" && git describe --abbrev=4 | cut -b2-`; \
|
||||||
test -n "$$SNAPSHOT" && VERSION=$$SNAPSHOT; \
|
test -n "$$SNAPSHOT" && VERSION=$$SNAPSHOT; \
|
||||||
fi; \
|
fi; \
|
||||||
|
@ -112,10 +112,10 @@ pdf-local:
|
||||||
$(MKDIR_P) "$$dest/pdf-a4" "$$dest/pdf-letter" && \
|
$(MKDIR_P) "$$dest/pdf-a4" "$$dest/pdf-letter" && \
|
||||||
for FILE in $(manfiles); do \
|
for FILE in $(manfiles); do \
|
||||||
BASE=`basename $$FILE .1` && \
|
BASE=`basename $$FILE .1` && \
|
||||||
sh "$(srcdir)/build-aux/manconv.sh" pdf a4 \
|
$(SHELL) "$(srcdir)/build-aux/manconv.sh" pdf a4 \
|
||||||
< "$(srcdir)/$$FILE" \
|
< "$(srcdir)/$$FILE" \
|
||||||
> "$$dest/pdf-a4/$$BASE-a4.pdf" && \
|
> "$$dest/pdf-a4/$$BASE-a4.pdf" && \
|
||||||
sh "$(srcdir)/build-aux/manconv.sh" pdf letter \
|
$(SHELL) "$(srcdir)/build-aux/manconv.sh" pdf letter \
|
||||||
< "$(srcdir)/$$FILE" \
|
< "$(srcdir)/$$FILE" \
|
||||||
> "$$dest/pdf-letter/$$BASE-letter.pdf"; \
|
> "$$dest/pdf-letter/$$BASE-letter.pdf"; \
|
||||||
done
|
done
|
||||||
|
|
Loading…
Reference in New Issue