Skip to content

Commit 15d5821

Browse files
author
Atsushi Abe
authored
Install config_file.h as a header (#368)
Add config_file.h into headers that shall be installed.
1 parent a98ff07 commit 15d5821

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343

4444
# Initializes the CodeQL tools for scanning.
4545
- name: Initialize CodeQL
46-
uses: github/codeql-action/init@v1
46+
uses: github/codeql-action/init@v2
4747
with:
4848
languages: ${{ matrix.language }}
4949
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -53,8 +53,8 @@ jobs:
5353

5454
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5555
# If this step fails, then you should remove it and run the build manually (see below)
56-
- name: Autobuild
57-
uses: github/codeql-action/autobuild@v1
56+
#- name: Autobuild
57+
# uses: github/codeql-action/autobuild@v2
5858

5959
# ℹ️ Command-line programs to run using the OS shell.
6060
# 📚 https://git.io/JvXDl
@@ -63,14 +63,14 @@ jobs:
6363
# and modify them (or add more) to build your code if your project
6464
# uses a compiled language
6565

66-
#- run: |
67-
# sudo apt-get -q -y update
68-
# sudo apt-get -q -y upgrade
69-
# sudo apt-get -y install build-essential automake autoconf libtool pkg-config libicu66 icu-devtools libicu-dev libxml2-dev uuid-dev fuse libfuse-dev libsnmp-dev
70-
# sudo cp .github/workflows/icu-config /usr/bin/icu-config
71-
# ./autogen.sh
72-
# ./configure
73-
# make
66+
- run: |
67+
sudo apt-get -q -y update
68+
sudo apt-get -q -y upgrade
69+
sudo apt-get -y install build-essential automake autoconf libtool pkg-config icu-devtools libicu-dev libxml2-dev uuid-dev fuse libfuse-dev libsnmp-dev
70+
sudo cp .github/workflows/icu-config /usr/bin/icu-config
71+
./autogen.sh
72+
./configure
73+
make
7474
7575
- name: Perform CodeQL Analysis
76-
uses: github/codeql-action/analyze@v1
76+
uses: github/codeql-action/analyze@v2

src/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,6 @@ SUBDIRS = libltfs $(GEN_DRV) $(PLAT_DRV) $(SUB) iosched utils
7777

7878
noinst_HEADERS = \
7979
libltfs/base64.h \
80-
libltfs/config_file.h \
8180
libltfs/dcache.h \
8281
libltfs/fs.h \
8382
libltfs/index_criteria.h \
@@ -100,6 +99,7 @@ noinst_HEADERS = \
10099
libltfs/arch/version.h
101100

102101
nobase_pkginclude_HEADERS = \
102+
libltfs/config_file.h \
103103
libltfs/dcache_ops.h \
104104
libltfs/iosched_ops.h \
105105
libltfs/kmi_ops.h \

0 commit comments

Comments
 (0)