Author: gjb
Date: Sat Aug 29 15:31:23 2020
New Revision: 364958
URL: https://svnweb.freebsd.org/changeset/base/364958

Log:
  Indentation fixes.  No functional changes.
  
  Sponsored by: Rubicon Communications, LLC (netgate.com)

Modified:
  head/release/Makefile.inc1

Modified: head/release/Makefile.inc1
==============================================================================
--- head/release/Makefile.inc1  Sat Aug 29 15:30:21 2020        (r364957)
+++ head/release/Makefile.inc1  Sat Aug 29 15:31:23 2020        (r364958)
@@ -13,19 +13,19 @@ GIT_CMD=   ${_P}/git
 
 .if !empty(GIT_CMD) && exists(${GIT_CMD})
 # Set the git branch and hash to export where needed.
-.if !defined(GITBRANCH) || empty(GITBRANCH)
+. if !defined(GITBRANCH) || empty(GITBRANCH)
 GITBRANCH!=    ${GIT_CMD} -C ${.CURDIR} rev-parse --abbrev-ref HEAD 
2>/dev/null | sed -e 's/\^\///'
-.export GITBRANCH
-.endif
-.if !defined(GITREV) || empty(GITREV)
+. export GITBRANCH
+. endif
+. if !defined(GITREV) || empty(GITREV)
 GITREV!=       ${GIT_CMD} -C ${.CURDIR} rev-parse --verify --short HEAD 
2>/dev/null || true
-.export GITREV
-.endif
+. export GITREV
+. endif
 .else
 GITBRANCH=     nullbranch
 GITREV=                nullhash
-.export GITBRANCH
-.export GITREV
+. export GITBRANCH
+. export GITREV
 .endif
 
 # Set the build date, primarily for snapshot builds.
_______________________________________________
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to