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 1fcc1af299
commit 6932ece389
1 changed files with 2 additions and 2 deletions

View File

@ -94,8 +94,8 @@ 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: