removed the json-c flags

This commit is contained in:
Václav Šmejkal 2022-05-02 19:31:38 +02:00
parent 3102241ca5
commit faf7789e5d

View File

@ -63,7 +63,7 @@ elif [[ "$1" == "install" ]]; then ########## INSTALL ##########
echo "Using '$compiler' as default compiler." echo "Using '$compiler' as default compiler."
### ###
flags="-Wall -fPIC -ljson-c -c" flags="-Wall -fPIC -c"
### ###
echo "Compiling... (Flags: $flags)" echo "Compiling... (Flags: $flags)"
@ -71,7 +71,7 @@ elif [[ "$1" == "install" ]]; then ########## INSTALL ##########
$compiler $flags $sourceFiles $compiler $flags $sourceFiles
flags="-Wall -ljson-c -shared" flags="-Wall -shared"
### ###
echo "Compiling library... (Flags: $flags)" echo "Compiling library... (Flags: $flags)"