Mercurial > emacs
changeset 53279:2429601c512b
* Makefile.in (install-arch-dep): Don't let cd output go into
pipe for carbon_appdir.
author | Jan Djärv <jan.h.d@swipnet.se> |
---|---|
date | Wed, 24 Dec 2003 12:02:26 +0000 |
parents | f830e67de7d8 |
children | 09376ac9647f |
files | ChangeLog Makefile.in |
diffstat | 2 files changed, 7 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Wed Dec 24 10:46:12 2003 +0000 +++ b/ChangeLog Wed Dec 24 12:02:26 2003 +0000 @@ -1,3 +1,8 @@ +2003-12-24 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> + + * Makefile.in (install-arch-dep): Don't let cd output go into + pipe for carbon_appdir. + 2003-12-24 Andreas Schwab <schwab@suse.de> * configure.in (PKG_CHECK_MODULES): Fix quoting.
--- a/Makefile.in Wed Dec 24 10:46:12 2003 +0000 +++ b/Makefile.in Wed Dec 24 12:02:26 2003 +0000 @@ -367,9 +367,9 @@ done if test "${carbon_appdir}" != ""; then \ umask 022; mkdir -p ${carbon_appdir}/Emacs.app; \ - (cd mac/Emacs.app; tar -chf - . ) | \ + (cd mac/Emacs.app; (tar -chf - . | \ (cd ${carbon_appdir}/Emacs.app; umask 022; tar -xvf - \ - && cat > /dev/null) || exit 1; \ + && cat > /dev/null))) || exit 1; \ fi ### Install the files that are machine-independent.