mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-08 16:13:50 +02:00
linux-3.8: separate distro config to the user config
This commit is contained in:
parent
c3f985fc49
commit
a1b4b71df2
1 changed files with 5 additions and 1 deletions
|
@ -27,7 +27,11 @@ do_configure() {
|
||||||
arch=x86_64
|
arch=x86_64
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -f ${FILESDIR}/${arch}-dotconfig ]; then
|
if [ -f ${FILESDIR}/${arch}-dotconfig-custom ]; then
|
||||||
|
msg_normal "Detected a custom .config file for your arch, using it.\n"
|
||||||
|
cp -f ${FILESDIR}/${arch}-dotconfig-custom .config
|
||||||
|
make ${makejobs} oldconfig
|
||||||
|
elif [ -f ${FILESDIR}/${arch}-dotconfig ]; then
|
||||||
msg_normal "Detected a .config file for your arch, using it.\n"
|
msg_normal "Detected a .config file for your arch, using it.\n"
|
||||||
cp -f ${FILESDIR}/${arch}-dotconfig .config
|
cp -f ${FILESDIR}/${arch}-dotconfig .config
|
||||||
make ${makejobs} oldconfig
|
make ${makejobs} oldconfig
|
||||||
|
|
Loading…
Add table
Reference in a new issue