Date: Tue, 15 Sep 2009 02:04:16 +0000 (UTC) From: Craig Rodrigues <rodrigc@FreeBSD.org> To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r197211 - projects/jbuild/usr.bin/jbuild/port Message-ID: <200909150204.n8F24Gr8072565@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: rodrigc Date: Tue Sep 15 02:04:16 2009 New Revision: 197211 URL: http://svn.freebsd.org/changeset/base/197211 Log: Create a file with some version info about the host we are building on. Modified: projects/jbuild/usr.bin/jbuild/port/Makefile Modified: projects/jbuild/usr.bin/jbuild/port/Makefile ============================================================================== --- projects/jbuild/usr.bin/jbuild/port/Makefile Tue Sep 15 01:01:03 2009 (r197210) +++ projects/jbuild/usr.bin/jbuild/port/Makefile Tue Sep 15 02:04:16 2009 (r197211) @@ -24,6 +24,8 @@ do-extract: mkdir -p ${WRKSRC} ( cd ${WRKSRC} ; ln -s ../../../filemon . ; ln -s ../../../../jbuild .; ln -s ../../../../jdirdep .; ln -s ../../../../make .) cp Makefile.port ${WRKSRC}/Makefile + echo "UNAME="`uname | tr '[:upper:]' '[:lower:]'` > ${WRKDIR}/host_version + echo "MAJORVERSION="`uname -r | sed -e 's/\..*//'` >> ${WRKDIR}/host_version do-install: mkdir -p ${KMODDIR}
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200909150204.n8F24Gr8072565>