Fix for annoying messages when launching on SnowLeopard

Fix for missing .o file in Makefile.in
This commit is contained in:
Peter Ammon 2012-05-30 00:22:45 -07:00
parent 4afdcf56fc
commit 9d8ae184c9
2 changed files with 5 additions and 3 deletions

View file

@ -773,7 +773,7 @@ mimedb: $(MIME_OBJS)
# Build the set_color program
#
set_color: set_color.o print_help.o common.o color.o
set_color: set_color.o print_help.o common.o color.o wutil.o
$(CXX) set_color.o print_help.o common.o wutil.o color.o $(LDFLAGS_SET_COLOR) -o $@

View file

@ -31,8 +31,10 @@ function fish_default_key_bindings -d "Default (Emacs-like) key bindings for fis
bind \e\[H beginning-of-line
bind \e\[F end-of-line
bind -k home beginning-of-line
bind -k end end-of-line
# OS X SnowLeopard doesn't have these keys. Don't show an annoying error message.
bind -k home beginning-of-line 2> /dev/null
bind -k end end-of-line 2> /dev/null
bind \e\eOC nextd-or-forward-word
bind \e\eOD prevd-or-backward-word