diff options
author | Jan Djärv <jan.h.d@swipnet.se> | 2003-12-24 12:02:26 +0000 |
---|---|---|
committer | Jan Djärv <jan.h.d@swipnet.se> | 2003-12-24 12:02:26 +0000 |
commit | 13c9cacfd36ea98d547156ff08fc29f815e52de4 (patch) | |
tree | 53d4fc37855b09095211a6aa115819045510c526 /Makefile.in | |
parent | 3e913c898f8ef62390595bc026b9680e9764948c (diff) | |
download | emacs-13c9cacfd36ea98d547156ff08fc29f815e52de4.tar.gz |
* Makefile.in (install-arch-dep): Don't let cd output go into
pipe for carbon_appdir.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index 61264712027..264b99f6d33 100644 --- a/Makefile.in +++ b/Makefile.in @@ -367,9 +367,9 @@ install-arch-dep: mkdir 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. |