summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2022-09-08 15:29:10 +0200
committerThomas Haller <thaller@redhat.com>2022-09-08 15:29:10 +0200
commit8686eb59275e73f0e500770e31afa8b90df04211 (patch)
tree6f6de6137377bea9ad4f35396587d42576f7bc8a
parenta1de6810df46a26aae5cfa50abb75aeeb2709096 (diff)
contrib: fix syntax error in "configure-for-system.sh"
-rwxr-xr-xcontrib/fedora/rpm/configure-for-system.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/fedora/rpm/configure-for-system.sh b/contrib/fedora/rpm/configure-for-system.sh
index bae35e227c..ea1639f9d7 100755
--- a/contrib/fedora/rpm/configure-for-system.sh
+++ b/contrib/fedora/rpm/configure-for-system.sh
@@ -305,9 +305,9 @@ else
fi
if [ -z "$P_BUILD_TYPE" ] ; then
- if [ -d ./build -a ! -f ./configure] ; then
+ if [ -d ./build -a ! -f ./configure ] ; then
P_BUILD_TYPE=meson
- elif [ ! -d ./build -a -f ./configure] ; then
+ elif [ ! -d ./build -a -f ./configure ] ; then
P_BUILD_TYPE=autotools
else
P_BUILD_TYPE=autotools