diff options
author | Kevin Dalley <kevin@seti.org> | 2000-03-15 08:25:22 +0000 |
---|---|---|
committer | Kevin Dalley <kevin@seti.org> | 2000-03-15 08:25:22 +0000 |
commit | a8078c173571945b14f20432ed781d5d087f02ad (patch) | |
tree | add5ddb9619572e14327498c455b1e023e50b008 | |
parent | 564859bff86173d28a51158edbba3e671fcc7ef5 (diff) | |
download | findutils-debian.tar.gz |
Be more careful with replacing @ values in updatedb.shdebian
-rw-r--r-- | locate/Makefile.in | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/locate/Makefile.in b/locate/Makefile.in index 5e1d6d4b..bc7db223 100644 --- a/locate/Makefile.in +++ b/locate/Makefile.in @@ -204,14 +204,14 @@ updatedb: updatedb.sh bigram=`echo bigram|sed '$(transform)'`; \ code=`echo code|sed '$(transform)'`; \ sed \ - -e "s,@bindir@,$(bindir)," \ - -e "s,@libexecdir@,$(libexecdir)," \ - -e "s,@LOCATE_DB@,$(LOCATE_DB)," \ - -e "s,@version@,$$version," \ - -e "s,@find@,$$find," \ - -e "s,@frcode@,$$frcode," \ - -e "s,@bigram@,$$bigram," \ - -e "s,@code@,$$code," \ + -e "s,@""bindir""@,$(bindir)," \ + -e "s,@""libexecdir""@,$(libexecdir)," \ + -e "s,@""LOCATE_DB""@,$(LOCATE_DB)," \ + -e "s,@""version""@,$$version," \ + -e "s,@""find""@,$${find}," \ + -e "s,@""frcode""@,$${frcode}," \ + -e "s,@""bigram""@,$${bigram}," \ + -e "s,@""code""@,$${code}," \ $(srcdir)/updatedb.sh > $@ chmod +x $@ |