Skip to content

Commit

Permalink
fix syntax error in Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
HugoAhoy committed Aug 25, 2021
1 parent ebdfb97 commit fe90f2b
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,17 @@ build_libjfs_dll:
&& unzip v${JUICEFS_VERSION}.zip
cd build/juicefs-${JUICEFS_VERSION}/sdk/java/libjfs \
&& make libjfs.dll \
&& realpath ./
&& ../../../../../juicefs/lib/libjfs.dll
&& test -f libjfs.dll; echo $?
&& cp libjfs.dll ../../../../../juicefs/lib/libjfs.dll
&& realpath ./ \
&& realpath ../../../../../juicefs/lib/libjfs.dll \
&& test -f libjfs.dll; echo $? \
&& cp libjfs.dll ../../../../../juicefs/lib/libjfs.dll \
&& test -f ../../../../../juicefs/lib/libjfs.dll; echo $?
cd build/juicefs-${JUICEFS_VERSION} \
&& make juicefs.exe \
&& realpath ./
&& realpath ../../juicefs/lib/juicefs.exe
&& test -f juicefs.exe; echo $?
&& cp juicefs.exe ../../juicefs/lib/juicefs.exe
&& realpath ./ \
&& realpath ../../juicefs/lib/juicefs.exe \
&& test -f juicefs.exe; echo $? \
&& cp juicefs.exe ../../juicefs/lib/juicefs.exe \
&& test -f ../../juicefs/lib/juicefs.exe; echo $?

print_libjfs_version:
Expand Down

0 comments on commit fe90f2b

Please sign in to comment.