Skip to content
Snippets Groups Projects
Commit c8ebd1f6 authored by Erik von Reis's avatar Erik von Reis
Browse files

New dolphin packages install symvers to a particular directory. This change...

New dolphin packages install symvers to a particular directory.  This change looks for those symvers and incorporates them into model builds.  Note that configure was changed by autoconf.  Configure should probably be dropped from git.
parent 3d2ed49f
No related branches found
No related tags found
1 merge request!78New dolphin packages install symvers to a particular directory. This change...
......@@ -4,6 +4,7 @@ SHELL = /bin/sh
top_srcdir := `readlink -m @top_srcdir@`
srcdir := `readlink -m @srcdir@`
linux_version := '@linux_version@'
VPATH=$(srcdir)
prefix = @prefix@
......@@ -49,6 +50,7 @@ DEVFLAGS=@DEVFLAGS@
@make -sC src/fe/$@ clean
# copy IOP symbol file to build area if found
@cp src/fe/ModuleIOP.symvers src/fe/$@ > /dev/null 2>&1 || /bin/true
@cat /opt/DIS/lib/modules/$(linux_version)/*.symvers > src/fe/$@/Module.symvers || /bin/true
# build it
@make -C src/fe/$@ >> $@.log 2>>$@_error.log || (tail $@.log; cat $@_error.log && /bin/false)
# save IOP symbol to file
......
This diff is collapsed.
dnl Process this file with autoconf to produce a configure script.
AC_INIT(NEWS)
linux_version=$(uname --release)
AC_SUBST(linux_version)
dnl Check for configuration options
dnl ==========================
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment