aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2013-09-20 13:45:10 -0400
committerMicah Anderson <micah@riseup.net>2013-09-20 13:45:10 -0400
commitbe4456ae3f9e44846a7ac83b3cfda40631ea046e (patch)
tree64133c54a5a1fc3593334b82f4644fca0906653b
parent0df3c9939da0132f82af2ba806d070c37b7bfe8c (diff)
downloadbackupninja-be4456ae3f9e44846a7ac83b3cfda40631ea046e.tar.gz
backupninja-be4456ae3f9e44846a7ac83b3cfda40631ea046e.tar.bz2
fix missing autoconf marker for @SED@
-rw-r--r--handlers/sys.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/handlers/sys.in b/handlers/sys.in
index 4210873..e8834b0 100644
--- a/handlers/sys.in
+++ b/handlers/sys.in
@@ -615,7 +615,7 @@ if [ "$luksheaders" == "yes" ]; then
if [ $? -ne 0 ]; then
warning "Could not compute the size of Luks header, skipping $dev"
continue
- elif [ -z "$headersize" -o -n "`echo \"$headersize\" | sed 's/[0-9]*//g'`" ]; then
+ elif [ -z "$headersize" -o -n "`echo \"$headersize\" | @SED@ 's/[0-9]*//g'`" ]; then
warning "The computed size of Luks header is not an integer, skipping $dev"
continue
fi