Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
some build.sh fixes and improvements, r=me
  • Loading branch information
franziskuskiefer committed Nov 17, 2016
1 parent 28e87ca commit b1a1956
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
6 changes: 3 additions & 3 deletions build.sh
Expand Up @@ -49,11 +49,11 @@ build_64=0
clean=0
rebuild_gyp=0
target=Debug
params=$(echo "$* $CC $CCC" | tr " " "\n")
verbose=0

cwd=$(cd $(dirname $0); pwd -P)
dist_dir="$cwd/../dist"
# parse parameters to store in config
params=$(echo "$*" | sed -e 's/-c\|-v\|-g\|-j [0-9]*\|-h//g' -e 's/^[ \t]*//')
params=$(echo "$params $CC $CCC" | tr " " "\n" | sed -e '/^\s*$/d')

cwd=$(cd $(dirname $0); pwd -P)
dist_dir="$cwd/../dist"
Expand Down
1 change: 0 additions & 1 deletion gtests/common/common.gyp
Expand Up @@ -18,7 +18,6 @@
'<(DEPTH)/lib/nss/nss.gyp:nss3',
'<(DEPTH)/lib/util/util.gyp:nssutil3',
'<(DEPTH)/lib/smime/smime.gyp:smime3',
'<(DEPTH)/lib/ssl/ssl.gyp:ssl3',
'<(DEPTH)/gtests/google_test/google_test.gyp:gtest',
'<(DEPTH)/cmd/lib/lib.gyp:sectool'
]
Expand Down

0 comments on commit b1a1956

Please sign in to comment.