Date: Sun, 22 Jul 2018 23:33:49 +0000 (UTC) From: Matt Macy <mmacy@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r336624 - head/release Message-ID: <201807222333.w6MNXnoj061222@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: mmacy Date: Sun Jul 22 23:33:48 2018 New Revision: 336624 URL: https://svnweb.freebsd.org/changeset/base/336624 Log: fix use of empty in Makefile.ec2 empty() takes a variable name - not the expanded value Reported by: sjg Modified: head/release/Makefile.ec2 Modified: head/release/Makefile.ec2 ============================================================================== --- head/release/Makefile.ec2 Sun Jul 22 23:32:21 2018 (r336623) +++ head/release/Makefile.ec2 Sun Jul 22 23:33:48 2018 (r336624) @@ -16,11 +16,11 @@ SVN_CMD= ${_P}/${_S} . endfor .endif .if exists(${SRCTOP}/.svn) -. if empty(${EC2_SVNBRANCH}) +. if empty(EC2_SVNBRANCH) EC2_SVNBRANCH!= ${SVN_CMD} info --show-item relative-url ${WORLDDIR} | sed -e 's/\^\///' . export EC2_SVNBRANCH . endif -. if empty(${EC2_SVNREV}) +. if empty(EC2_SVNREV) EC2_SVNREV!= ${SVN_CMD} info --show-item last-changed-revision ${WORLDDIR} . export EC2_SVNREV . endif
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201807222333.w6MNXnoj061222>