Skip to content

Commit

Permalink
ksmbd-tools: syntax error
Browse files Browse the repository at this point in the history
Signed-off-by: Namjae Jeon <linkinjeon@kernel.org>
  • Loading branch information
namjaejeon committed Nov 4, 2024
1 parent b823a52 commit e55dc98
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,34 +24,34 @@ jobs:
g++ --version
pip3 install --user meson
PATH=$HOME/.local/bin:$PATH
-name: autotools build with mit krb5
- name: autotools build with mit krb5
run: |
./autogen.sh
./configure
make DISTCHECK_CONFIGURE_FLAGS=--enable-krb5=no distcheck
-name: autotools build with mit krb5
- name: autotools build with mit krb5
run: |
./autogen.sh
./configure
make DISTCHECK_CONFIGURE_FLAGS="LIBKRB5_CFLAGS='$(krb5-config.mit --cflags)' LIBKRB5_LIBS='$(krb5-config.mit --libs)' --enable-krb5" distcheck
-name: autotools build with heimdal krb5
- name: autotools build with heimdal krb5
run: |
./autogen.sh
./configure
make DISTCHECK_CONFIGURE_FLAGS="LIBKRB5_CFLAGS='$(krb5-config.heimdal --cflags)' LIBKRB5_LIBS='$(krb5-config.heimdal --libs) -lasn1' --enable-krb5" distcheck
-name: meson build without krb5
- name: meson build without krb5
run: |
mkdir build
cd build
meson -Dkrb5=disabled ..
meson dist
-name: meson build with mit krb5
- name: meson build with mit krb5
run: |
mkdir build
cd build
meson -Dkrb5=enabled ..
meson dist
-name: meson build with heimdal krb5
- name: meson build with heimdal krb5
run: |
mkdir build
cd build
Expand Down

0 comments on commit e55dc98

Please sign in to comment.