diff options
| author | Jan Djärv | 2003-12-24 12:02:26 +0000 |
|---|---|---|
| committer | Jan Djärv | 2003-12-24 12:02:26 +0000 |
| commit | 0b1ec9e98455db4d85616b3d6c80a69aad038adf (patch) | |
| tree | 4b6d6e08a6a0b4e3e80aeb2c4f59976d46b2deee | |
| parent | 35996d226032c2b7d73eaf8521ec8a986e3b92b4 (diff) | |
| download | emacs-0b1ec9e98455db4d85616b3d6c80a69aad038adf.tar.gz emacs-0b1ec9e98455db4d85616b3d6c80a69aad038adf.zip | |
* Makefile.in (install-arch-dep): Don't let cd output go into
pipe for carbon_appdir.
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | Makefile.in | 4 |
2 files changed, 7 insertions, 2 deletions
| @@ -1,3 +1,8 @@ | |||
| 1 | 2003-12-24 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> | ||
| 2 | |||
| 3 | * Makefile.in (install-arch-dep): Don't let cd output go into | ||
| 4 | pipe for carbon_appdir. | ||
| 5 | |||
| 1 | 2003-12-24 Andreas Schwab <schwab@suse.de> | 6 | 2003-12-24 Andreas Schwab <schwab@suse.de> |
| 2 | 7 | ||
| 3 | * configure.in (PKG_CHECK_MODULES): Fix quoting. | 8 | * configure.in (PKG_CHECK_MODULES): Fix quoting. |
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 | |||
| 367 | done | 367 | done |
| 368 | if test "${carbon_appdir}" != ""; then \ | 368 | if test "${carbon_appdir}" != ""; then \ |
| 369 | umask 022; mkdir -p ${carbon_appdir}/Emacs.app; \ | 369 | umask 022; mkdir -p ${carbon_appdir}/Emacs.app; \ |
| 370 | (cd mac/Emacs.app; tar -chf - . ) | \ | 370 | (cd mac/Emacs.app; (tar -chf - . | \ |
| 371 | (cd ${carbon_appdir}/Emacs.app; umask 022; tar -xvf - \ | 371 | (cd ${carbon_appdir}/Emacs.app; umask 022; tar -xvf - \ |
| 372 | && cat > /dev/null) || exit 1; \ | 372 | && cat > /dev/null))) || exit 1; \ |
| 373 | fi | 373 | fi |
| 374 | 374 | ||
| 375 | ### Install the files that are machine-independent. | 375 | ### Install the files that are machine-independent. |