Changes in tools/xcw/bin/helenos-bld-config [a5c468e:3875f106] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/xcw/bin/helenos-bld-config
ra5c468e r3875f106 1 1 #!/bin/bash 2 2 # 3 # Copyright (c) 201 8Jiri Svoboda3 # Copyright (c) 2015 Jiri Svoboda 4 4 # All rights reserved. 5 5 # … … 35 35 MAKEFILE_COMMON="$SRC_ROOT"/Makefile.common 36 36 MAKEFILE_CONFIG="$SRC_ROOT"/Makefile.config 37 CONFIG_MK="$SRC_ROOT"/uspace/export/config.mk38 37 39 38 # Extract simple 'name = value' variable definition from Makefile … … 43 42 file_name="$2" 44 43 45 sed -n "s/^$field_name \\{0,1\\}= \\{0,1\\}\\(.*\\)$/\\1/p" "$file_name" | \ 46 sed "s/^\"//" | sed "s/\"$//" 44 sed -n "s/^$field_name = \\(.*\\)$/\\1/p" "$file_name" 47 45 } 48 46 … … 56 54 echo "__${ENDIAN}__" 57 55 ;; 58 *.--cflags) extract_field "HELENOS_CFLAGS" "$CONFIG_MK";;59 *.--ldflags) extract_field "HELENOS_LDFLAGS" "$CONFIG_MK";;60 56 (*) 61 57 echo "Unknown option $1" >&2
Note:
See TracChangeset
for help on using the changeset viewer.