diff options
author | Andrew Innes <andrewi@gnu.org> | 2000-09-03 22:33:41 +0000 |
---|---|---|
committer | Andrew Innes <andrewi@gnu.org> | 2000-09-03 22:33:41 +0000 |
commit | 96a32cb4a3254196a57d596fa62fb2555b68d0b7 (patch) | |
tree | e09495e3f44b5f68ec36d53c0570375a7382d0a8 /leim | |
parent | 96f492752e3f1ccd28d8cb24a793f4e1c5a31fba (diff) | |
download | emacs-96a32cb4a3254196a57d596fa62fb2555b68d0b7.tar.gz |
(install) Fix copying of directories.
Diffstat (limited to 'leim')
-rw-r--r-- | leim/makefile.w32-in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/leim/makefile.w32-in b/leim/makefile.w32-in index 3c41692fe46..8ec885b51cb 100644 --- a/leim/makefile.w32-in +++ b/leim/makefile.w32-in @@ -153,8 +153,8 @@ install: all - $(DEL) $(INSTALL_DIR)/same-dir.tst
echo SameDirTest > $(INSTALL_DIR)/same-dir.tst
$(IFNOTSAMEDIR) $(CP) leim-list.el $(INSTALLDIR) $(ENDIF)
- $(IFNOTSAMEDIR) $(CP_DIR) quail $(INSTALLDIR)/quail $(ENDIF)
- $(IFNOTSAMEDIR) $(CP_DIR) ja-dic $(INSTALLDIR)/ja-dic $(ENDIF)
+ $(IFNOTSAMEDIR) $(CP_DIR) quail $(INSTALLDIR) $(ENDIF)
+ $(IFNOTSAMEDIR) $(CP_DIR) ja-dic $(INSTALLDIR) $(ENDIF)
- $(DEL) $(INSTALL_DIR)/same-dir.tst
clean mostlyclean:
|