Fix a bug in install rule of Makefile

This commit is contained in:
Grégory Soutadé 2012-06-12 16:10:18 +02:00
parent 44636c5882
commit 1bbf7b3ae7
1 changed files with 3 additions and 3 deletions

View File

@ -94,11 +94,11 @@ install:
mkdir -p $(BIN_DIR) $(SHARE_DIR) $(DOC_DIR)
cp kc $(BIN_DIR)
cp -rf ressources/* $(SHARE_DIR)
rm -rf $(SHARE_DIR)/ressources/po/*
cp -rf ressources/po/*.qm $(SHARE_DIR)/ressources/po/
rm -rf $(SHARE_DIR)/po/* # Only copy qm files
cp -rf ressources/po/*.qm $(SHARE_DIR)/po/
cp -rf README* ChangeLog AUTHORS COPYING TODO $(DOC_DIR)
remove:
rm -rf $(LIB_DIR) $(SHARE_DIR) $(DOC_DIR) $(BIN_DIR)/kc
uninstall: remove
uninstall: remove