Skip to content

Commit 3851d24

Browse files
AhmedYasserrrAhmedYasserrr
andauthored
[FIX] Corrected bitness check for 64-bit systems (#1680)
Co-authored-by: AhmedYasserrr <ahmdyasrj@gamil.com>
1 parent e597f01 commit 3851d24

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

linux/build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ done
3131

3232
BLD_FLAGS="$BLD_FLAGS -std=gnu99 -Wno-write-strings -Wno-pointer-sign -D_FILE_OFFSET_BITS=64 -DVERSION_FILE_PRESENT -DENABLE_OCR -DFT2_BUILD_LIBRARY -DGPAC_DISABLE_VTT -DGPAC_DISABLE_OD_DUMP -DGPAC_DISABLE_REMOTERY -DNO_GZIP"
3333
bit_os=$(getconf LONG_BIT)
34-
if [ "$bit_os"=="64" ]
34+
if [ "$bit_os" == "64" ]
3535
then
3636
BLD_FLAGS="$BLD_FLAGS -DGPAC_64_BITS"
3737
fi

0 commit comments

Comments
 (0)