* guile-doc-snarf.in: Don't use absolute path for `sed'. (Note
authorMikael Djurfeldt <djurfeldt@nada.kth.se>
Mon, 13 Mar 2000 11:04:41 +0000 (11:04 +0000)
committerMikael Djurfeldt <djurfeldt@nada.kth.se>
Mon, 13 Mar 2000 11:04:41 +0000 (11:04 +0000)
that we can't use autoconf for this.  Autoconf itself relies on
the existence of `sed' somewhere on your path.  (Thanks to Dirk
Herrman.)

libguile/guile-doc-snarf.in

index 3009af0..9affee8 100755 (executable)
@@ -12,7 +12,7 @@ filename=`basename $fullfilename`
 #  because the makefile redirects output to the .x file
 #  which creates the file before the inclusion occurs)
 # --12/12/99 gjb
-no_ext=`echo $filename | /bin/sed 's/\.[^.]*$//g'`
+no_ext=`echo $filename | sed 's/\.[^.]*$//g'`
 dot_doc=${no_ext}.doc
 
 temp="/tmp/snarf.$$"