Commit e01da74f authored by Casey Strouse's avatar Casey Strouse Committed by GitHub

Merge pull request #3509 from uberhacker/add-CREW_BUILD-constant

Add CREW_BUILD constant
parents 44e1e61f 9cc5c466
......@@ -254,6 +254,7 @@ def const (var)
'ARCH_LIB',
'CHROMEOS_RELEASE',
'CREW_BREW_DIR',
'CREW_BUILD',
'CREW_CONFIG_PATH',
'CREW_DEST_DIR',
'CREW_DEST_HOME',
......
# Defines common constants used in different parts of crew
CREW_VERSION = '1.2.4'
CREW_VERSION = '1.2.5'
ARCH = `uname -m`.strip
ARCH_LIB = if ARCH == 'x86_64' then 'lib64' else 'lib' end
......@@ -45,3 +45,5 @@ CREW_NOT_STRIP = ENV["CREW_NOT_STRIP"]
USER = `whoami`.chomp
CHROMEOS_RELEASE = `grep CHROMEOS_RELEASE_CHROME_MILESTONE= /etc/lsb-release | cut -d'=' -f2`.chomp
CREW_BUILD = `gcc -dumpmachine`
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment