diff --git a/srcpkgs/linux3.9/template b/srcpkgs/linux3.9/template index 3e47e46a8f..1174a081d2 100644 --- a/srcpkgs/linux3.9/template +++ b/srcpkgs/linux3.9/template @@ -27,7 +27,11 @@ do_configure() { arch=x86_64 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" cp -f ${FILESDIR}/${arch}-dotconfig .config make ${makejobs} oldconfig