Skip to content

Commit

Permalink
xf86-video-nvidia/xf86-video-nvidia-legacy: use toolchain linker
Browse files Browse the repository at this point in the history
  • Loading branch information
mglae committed Oct 5, 2019
1 parent c1bb7b9 commit ba7ecaa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/x11/driver/xf86-video-nvidia-legacy/package.mk
Expand Up @@ -24,7 +24,7 @@ make_target() {
unset LDFLAGS

cd kernel
make module CC=$CC SYSSRC=$(kernel_path) SYSOUT=$(kernel_path)
make module CC=${CC} LD=${LD} SYSSRC=$(kernel_path) SYSOUT=$(kernel_path)
$STRIP --strip-debug nvidia.ko
cd ..
}
Expand Down
2 changes: 1 addition & 1 deletion packages/x11/driver/xf86-video-nvidia/package.mk
Expand Up @@ -27,7 +27,7 @@ make_target() {
unset LDFLAGS

cd kernel
make module CC=$CC SYSSRC=$(kernel_path) SYSOUT=$(kernel_path)
make module CC=${CC} LD=${LD} SYSSRC=$(kernel_path) SYSOUT=$(kernel_path)
$STRIP --strip-debug nvidia.ko
cd ..
}
Expand Down

0 comments on commit ba7ecaa

Please sign in to comment.