]> git.ipfire.org Git - thirdparty/systemd.git/blobdiff - tools/meson-apply-m4.sh
nspawn: don't look for .nspawn file above the top-level directory, it makes no sense
[thirdparty/systemd.git] / tools / meson-apply-m4.sh
index 6abe177ac51a8b21e34fcdd0f9259d6cd9d27a2d..5fad8cd94fc46a6377a0bb01ae227f00542ed987 100755 (executable)
@@ -5,18 +5,18 @@ CONFIG=$1
 TARGET=$2
 
 if [ $# -ne 2 ]; then
-        echo 'Invalid number of arguments.'
-        exit 1
+    echo 'Invalid number of arguments.'
+    exit 1
 fi
 
 if [ ! -f $CONFIG ]; then
-        echo "$CONFIG not found."
-        exit 2
+    echo "$CONFIG not found."
+    exit 2
 fi
 
 if [ ! -f $TARGET ]; then
-        echo "$TARGET not found."
-        exit 3
+    echo "$TARGET not found."
+    exit 3
 fi
 
 DEFINES=$(awk '$1 == "#define" && $3 == "1" { printf "-D%s ", $2 }' $CONFIG)