Skip to content
Snippets Groups Projects
Commit 69cab13e authored by Marcel Loose's avatar Marcel Loose :sunglasses:
Browse files

Bug 835: Minor fix: avoid problem when contains slashes (which it shouldn't in the first place).

parent 4146b0ed
No related branches found
No related tags found
No related merge requests found
...@@ -162,7 +162,7 @@ if test -f "$srcdir/$1.log_prop"; then ...@@ -162,7 +162,7 @@ if test -f "$srcdir/$1.log_prop"; then
\cp $srcdir/$1.log_prop . \cp $srcdir/$1.log_prop .
else else
if test ! -f "$1.log_prop"; then if test ! -f "$1.log_prop"; then
sed -e "s/<LOGFILENAME>/$1_tmp.log/" $lfr_share_dir/default.log_prop > $1.log_prop sed -e "s%<LOGFILENAME>%$1_tmp.log%" $lfr_share_dir/default.log_prop > $1.log_prop
fi fi
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment