diff options
author | Stefan Bethke <stb@FreeBSD.org> | 1998-10-10 02:45:35 +0000 |
---|---|---|
committer | Stefan Bethke <stb@FreeBSD.org> | 1998-10-10 02:45:35 +0000 |
commit | dc0384dd4ce8842c8a97e9f529b3a2c2ce36575c (patch) | |
tree | c00befcdd9ebbb23b5c0f66f638a26410eb2a5f8 /net/netatalk/files | |
parent | Update for the New Perl policy (diff) |
(Forgot to add the patch)
Symlinks to libexec/psf are now in libexec/filters instead of in
share/filters.
Notes
Notes:
svn path=/head/; revision=13806
Diffstat (limited to 'net/netatalk/files')
-rw-r--r-- | net/netatalk/files/patch-ak | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/net/netatalk/files/patch-ak b/net/netatalk/files/patch-ak new file mode 100644 index 000000000000..96e4fb1be152 --- /dev/null +++ b/net/netatalk/files/patch-ak @@ -0,0 +1,20 @@ +--- etc/psf/Makefile.orig Thu Apr 18 23:53:09 1996 ++++ etc/psf/Makefile Sat Oct 10 01:33:08 1998 +@@ -32,14 +32,14 @@ + + install : all + -mkdir ${RESDIR} +- -mkdir ${RESDIR}/filters ++ -mkdir ${SBINDIR}/filters + ${INSTALL} -c psa ${SBINDIR} + ${INSTALL} -c etc2ps.sh ${SBINDIR}/etc2ps + ${INSTALL} -c pagecount.ps ${RESDIR} + ${INSTALL} -c psf ${SBINDIR} + for i in ${LINKS} ; do \ +- rm -f ${RESDIR}/filters/$$i; \ +- ln -s ${SBINDIR}/psf ${RESDIR}/filters/$$i; \ ++ rm -f ${SBINDIR}/filters/$$i; \ ++ ln -s ${SBINDIR}/psf ${SBINDIR}/filters/$$i; \ + done + + clean : |