diff -uNr pstoedit_3.15.orig/doc/pstoedit.1 pstoedit_3.15/doc/pstoedit.1
--- pstoedit_3.15.orig/doc/pstoedit.1 Mon Oct 11 03:55:49 1999
+++ pstoedit_3.15/doc/pstoedit.1 Sat Nov 13 21:46:05 1999
@@ -307,7 +307,7 @@
.br
<
.IR "The directory where the pstoedit executably is located"
->/../lib/
+>/../lib/pstoedit/
.RS
.PP
.RE
diff -uNr pstoedit_3.15.orig/pstoedit.htm pstoedit_3.15/pstoedit.htm
--- pstoedit_3.15.orig/pstoedit.htm Mon Oct 11 03:55:53 1999
+++ pstoedit_3.15/pstoedit.htm Sat Nov 13 21:44:42 1999
@@ -261,7 +261,7 @@
Unix:
<
The directory where the pstoedit executably is located
->/../lib/
+>/../lib/pstoedit/
diff -uNr pstoedit_3.15.orig/src/makefile pstoedit_3.15/src/makefile
--- pstoedit_3.15.orig/src/makefile Mon Oct 11 04:02:34 1999
+++ pstoedit_3.15/src/makefile Sat Nov 13 21:43:31 1999
@@ -296,7 +296,10 @@
if [ ! -d $(prefix)/lib ] ; then \
$(INSTALL_DIR) $(prefix)/lib; \
fi
- $(INSTALL_DATA) ../misc/mpost.fmp $(prefix)/lib
+ if [ ! -d $(prefix)/lib/pstoedit ] ; then \
+ $(INSTALL_DIR) $(prefix)/lib/pstoedit; \
+ fi
+ $(INSTALL_DATA) ../misc/mpost.fmp $(prefix)/lib/pstoedit
if [ ! -d $(MANDIR) ] ; then \
$(INSTALL_DIR) $(MANDIR); \
fi
diff -uNr pstoedit_3.15.orig/src/pstoedit.cpp pstoedit_3.15/src/pstoedit.cpp
--- pstoedit_3.15.orig/src/pstoedit.cpp Mon Oct 11 04:05:45 1999
+++ pstoedit_3.15/src/pstoedit.cpp Sat Nov 13 21:52:05 1999
@@ -551,7 +551,7 @@
*p = '\0';
RSString test(szExePath);
#if (defined(unix) || defined(__unix__) || defined(_unix) || defined(__unix) || defined(__EMX__) ) && !defined(DJGPP)
- test+="/../lib/";
+ test+="/../lib/pstoedit/";
test+=drivername;
test+=".fmp";
#else