Skip to content

Commit

Permalink
Makefile: fix man path
Browse files Browse the repository at this point in the history
svn path=/trunk/mcs/; revision=55157
  • Loading branch information
Wade Berrier committed Jan 6, 2006
1 parent ba72170 commit e6f2cc9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions mcs/jay/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2006-01-06 Wade Berrier <wberrier@novell.com>

* Makefile: fix man path

2005-09-20 Konstantin Triger <kostat@mainsift.com>

* Added jay.vcproj to build jay on pure Win32
Expand Down
6 changes: 3 additions & 3 deletions mcs/jay/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,19 @@ ifndef NO_INSTALL
install-local:
$(MKINSTALLDIRS) $(DESTDIR)$(prefix)/bin
$(MKINSTALLDIRS) $(DESTDIR)$(prefix)/share/jay
$(MKINSTALLDIRS) $(DESTDIR)$(prefix)/man/man1
$(MKINSTALLDIRS) $(DESTDIR)$(prefix)/share/man/man1
$(INSTALL_BIN) jay $(DESTDIR)$(prefix)/bin
for datafile in $(datafiles) ; do \
$(INSTALL_DATA) $$datafile $(DESTDIR)$(prefix)/share/jay ; \
done
$(INSTALL_DATA) jay.1 $(DESTDIR)$(prefix)/man/man1
$(INSTALL_DATA) jay.1 $(DESTDIR)$(prefix)/share/man/man1

uninstall-local:
-rm -f $(DESTDIR)$(prefix)/bin/jay
for datafile in $(datafiles) ; do \
rm -f $(DESTDIR)$(prefix)/share/jay/$$datafile || : ; \
done
-rm -f $(DESTDIR)$(prefix)/man/man1/jay.1
-rm -f $(DESTDIR)$(prefix)/share/man/man1/jay.1
endif

clean-local:
Expand Down

0 comments on commit e6f2cc9

Please sign in to comment.