Skip to content

Commit 45a6e3e

Browse files
committed
chore: fix linker order for fmod library
1 parent 08e6e64 commit 45a6e3e

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ SOURCES = $(shell find src -type f -name "*.c")
99

1010
all:
1111
mkdir -p lib
12-
$(CC) $(LDFLAGS) $(CCFLAGS) $(SOURCES) -o $(LIBRARY)
12+
$(CC) $(CCFLAGS) $(SOURCES) $(LDFLAGS) -o $(LIBRARY)
1313

1414
install:
1515
sudo mkdir -p /usr/lib/krosshair

PKGBUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Maintainer: fibsussy <noahlykins@gmail.com>
22
pkgname=krosshair
3-
pkgver=0.1.0
3+
pkgver=0.1.1
44
pkgrel=1
55
pkgdesc="Crosshair overlay for games on linux using Vulkan"
66
arch=('x86_64' 'aarch64')

aur/PKGBUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Maintainer: fibsussy <noahlykins@gmail.com>
22
pkgname=krosshair
3-
pkgver=0.1.0
3+
pkgver=0.1.1
44
pkgrel=1
55
pkgdesc="Crosshair overlay for games on linux using Vulkan"
66
arch=('x86_64' 'aarch64')

0 commit comments

Comments
 (0)