Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • tools/xcw/bin/helenos-bld-config

    ra5c468e r3875f106  
    11#!/bin/bash
    22#
    3 # Copyright (c) 2018 Jiri Svoboda
     3# Copyright (c) 2015 Jiri Svoboda
    44# All rights reserved.
    55#
     
    3535MAKEFILE_COMMON="$SRC_ROOT"/Makefile.common
    3636MAKEFILE_CONFIG="$SRC_ROOT"/Makefile.config
    37 CONFIG_MK="$SRC_ROOT"/uspace/export/config.mk
    3837
    3938# Extract simple 'name = value' variable definition from Makefile
     
    4342        file_name="$2"
    4443
    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"
    4745}
    4846
     
    5654        echo "__${ENDIAN}__"
    5755        ;;
    58 *.--cflags) extract_field "HELENOS_CFLAGS" "$CONFIG_MK";;
    59 *.--ldflags) extract_field "HELENOS_LDFLAGS" "$CONFIG_MK";;
    6056(*)
    6157        echo "Unknown option $1" >&2
Note: See TracChangeset for help on using the changeset viewer.