summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Dalley <kevin@seti.org>2000-03-15 08:25:22 +0000
committerKevin Dalley <kevin@seti.org>2000-03-15 08:25:22 +0000
commita8078c173571945b14f20432ed781d5d087f02ad (patch)
treeadd5ddb9619572e14327498c455b1e023e50b008
parent564859bff86173d28a51158edbba3e671fcc7ef5 (diff)
downloadfindutils-debian.tar.gz
Be more careful with replacing @ values in updatedb.shdebian
-rw-r--r--locate/Makefile.in16
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 $@