Skip to content

Commit

Permalink
Merge pull request #44 from saurontech/ubuntu22.04
Browse files Browse the repository at this point in the history
fix makefile for ubuntu 22.04
  • Loading branch information
saurontech authored Jun 2, 2022
2 parents f998dbe + 2912203 commit 1305e67
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,11 @@ clean:
make clean -C ./advps
make clean -C ./keys

./keys/rootCA.srl:
./keys/.srl:
echo "using OpenSSL 3? it seems to work without .srl"
touch ./keys/.srl

./keys/rootCA.srl: ./keys/.srl
mv ./keys/.srl ./keys/rootCA.srl

rename_srl: ./keys/rootCA.srl
Expand Down Expand Up @@ -108,7 +112,7 @@ install_dkms:
dkms install -m $(MODNAME) -v $(VERSION)

uninstall_dkms:
dkms uninstall -m $(MODNAME) -v $(VERSION)
- dkms uninstall -m $(MODNAME) -v $(VERSION)
dkms remove -m $(MODNAME) -v $(VERSION) --all
rm -rf /usr/src/$(MODNAME)-$(VERSION)

Expand Down

0 comments on commit 1305e67

Please sign in to comment.