mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
11 lines
194 B
Bash
Executable File
11 lines
194 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. config/options $1
|
|
|
|
cd $PKG_BUILD
|
|
|
|
[ "$TARGET_ARCH" = "i386" ] && cd x86-32
|
|
[ "$TARGET_ARCH" = "x86_64" ] && cd x86-64
|
|
|
|
KBUILD_NOPEDANTIC=1 make V=1 CC=$CC -C $(kernel_path) M=`pwd`
|