Skip to content

Commit

Permalink
keymap install fix
Browse files Browse the repository at this point in the history
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1174 c046a42c-6fe2-441c-8c8c-71466251a162
  • Loading branch information
bellard committed Dec 12, 2004
1 parent 3d11d0e commit fed4a9a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ distclean: clean
rm -rf $$d || exit 1 ; \
done

KEYMAPS=da en-gb et fr fr-ch is lt modifiers no pt-br sv \
ar de en-us fi fr-be hr it lv nl pl ru th \
common de-ch es fo fr-ca hu ja mk nl-be pt sl tr

install: all
mkdir -p "$(bindir)"
install -m 755 -s $(TOOLS) "$(bindir)"
Expand All @@ -57,7 +61,7 @@ ifndef CONFIG_WIN32
mkdir -p "$(mandir)/man1"
install qemu.1 qemu-img.1 "$(mandir)/man1"
mkdir -p "$(datadir)/keymaps"
install -m 644 keymaps/* "$(datadir)"
install -m 644 $(addprefix keymaps/,$(KEYMAPS)) "$(datadir)/keymaps"
endif
for d in $(TARGET_DIRS); do \
$(MAKE) -C $$d $@ || exit 1 ; \
Expand Down

0 comments on commit fed4a9a

Please sign in to comment.