Skip to content

Commit

Permalink
Merge branch 'travis-update' (Focal + gcc fix)
Browse files Browse the repository at this point in the history
Fixes #4.
  • Loading branch information
anko committed Dec 13, 2020
2 parents 07fa90c + d5db3a0 commit 03e7d54
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
dist: bionic
dist: focal
language: c
compiler:
- clang
- gcc
script:
- make
addons:
Expand Down
2 changes: 1 addition & 1 deletion makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
xkbcat: xkbcat.c
$(CC) -O3 --std=c99 -pedantic -Wall -lX11 -lXi -o xkbcat xkbcat.c
$(CC) -O3 --std=c99 -pedantic -Wall xkbcat.c -o xkbcat -lX11 -lXi
clean:
rm --force xkbcat

0 comments on commit 03e7d54

Please sign in to comment.