We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ecf0b62 commit 3834964Copy full SHA for 3834964
.github/workflows/ci-ubuntu-latest.yml
@@ -8,6 +8,8 @@ jobs:
8
steps:
9
- uses: actions/checkout@v2
10
- uses: abbbi/github-actions-tune@v1
11
+ - name: apt update
12
+ run: sudo apt-get update
13
- name: Install build-essential and devscripts
14
run: sudo apt-get install build-essential devscripts equivs acl
15
- name: Install Kernel Build Dependencies
Makefile
@@ -2,7 +2,7 @@ obj-m := nullfs.o
2
3
all: ko
4
ko:
5
- make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules
+ make -C /lib/modules/$(shell uname -r)/build M=$(shell pwd) modules
6
7
clean:
- make -C /lib/modules/$(shell uname -r)/build M=$(PWD) clean
+ make -C /lib/modules/$(shell uname -r)/build M=$(shell pwd) clean
0 commit comments