# HG changeset patch # User Jim Blandy # Date 714953879 0 # Node ID 56b6d2f4383a7b090f5451c6af94d134cd966913 # Parent 5cc1bd18edf7397d51600ace9aa02ddaa011ffe4 *** empty log message *** diff -r 5cc1bd18edf7 -r 56b6d2f4383a Makefile.in --- a/Makefile.in Thu Aug 27 04:22:31 1992 +0000 +++ b/Makefile.in Thu Aug 27 22:17:59 1992 +0000 @@ -119,10 +119,11 @@ removenullpaths=sed -e 's/^://' -e 's/:$$//' -e 's/::/:/' +# Note that sed is not in /bin on 386bsd. src/paths.h: Makefile src/paths.h.in lisppath=`echo ${lisppath} | ${removenullpaths}` ; \ buildlisppath=`echo ${buildlisppath} | ${removenullpaths}` ; \ - /bin/sed < src/paths.h.in > src/paths.h.tmp \ + sed < src/paths.h.in > src/paths.h.tmp \ -e 's;\(#.*PATH_LOADSEARCH\).*$$;\1 "'$${lisppath}'";' \ -e 's;\(#.*PATH_DUMPLOADSEARCH\).*$$;\1 "'$${buildlisppath}'";' \ -e 's;\(#.*PATH_EXEC\).*$$;\1 "${libdir}";' \