Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/mcs/jay
diff options
context:
space:
mode:
authorWade Berrier <wade@mono-cvs.ximian.com>2006-01-06 21:42:04 +0300
committerWade Berrier <wade@mono-cvs.ximian.com>2006-01-06 21:42:04 +0300
commite6f2cc9f4622f063fdb2a6c89356895acf06310d (patch)
tree1b8b83f9a125e1ab0be802ce93aff21b519a0d2b /mcs/jay
parentba721702f47bab69d1a008b7e02890f1176d1392 (diff)
Makefile: fix man path
svn path=/trunk/mcs/; revision=55157
Diffstat (limited to 'mcs/jay')
-rwxr-xr-xmcs/jay/ChangeLog4
-rw-r--r--mcs/jay/Makefile6
2 files changed, 7 insertions, 3 deletions
diff --git a/mcs/jay/ChangeLog b/mcs/jay/ChangeLog
index e2ef90e9a68..0bd97787de2 100755
--- a/mcs/jay/ChangeLog
+++ b/mcs/jay/ChangeLog
@@ -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
diff --git a/mcs/jay/Makefile b/mcs/jay/Makefile
index d647abf01a6..1e97eb094dc 100644
--- a/mcs/jay/Makefile
+++ b/mcs/jay/Makefile
@@ -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: