Skip to content

Commit

Permalink
build: pass .d file name to scripts/make_device_config.sh, fix makefi…
Browse files Browse the repository at this point in the history
…le target

The .d file name must match exactly what is used in the SUBDIR_DEVICES_MAK_DEP
variable.  Instead of making assumptions in the make_device_config.sh script,
just pass it in.

Similarly, the makefile target may not match the output file name, because
Makefile uses a temporary file.  Instead of making assumptions on what the
Makefile does, emit the config-devices.mak file to stdout, and use the
passed-in destination as the makefile target

Reported-by: Peter Maydell <peter.maydell@linaro.org>
Cc: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
  • Loading branch information
bonzini committed Mar 18, 2015
1 parent 4adf418 commit 15564d8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 9 deletions.
3 changes: 2 additions & 1 deletion Makefile
Expand Up @@ -112,7 +112,8 @@ endif
-include $(SUBDIR_DEVICES_MAK_DEP)

%/config-devices.mak: default-configs/%.mak
$(call quiet-command,$(SHELL) $(SRC_PATH)/scripts/make_device_config.sh $@.tmp $<, " GEN $@.tmp")
$(call quiet-command, \
$(SHELL) $(SRC_PATH)/scripts/make_device_config.sh $< $*-config-devices.mak.d $@ > $@.tmp, " GEN $@.tmp")
$(call quiet-command, if test -f $@; then \
if cmp -s $@.old $@; then \
mv $@.tmp $@; \
Expand Down
18 changes: 10 additions & 8 deletions scripts/make_device_config.sh
@@ -1,10 +1,12 @@
#! /bin/sh
# Construct a target device config file from a default, pulling in any
# files from include directives.
# Writes a target device config file to stdout, from a default and from
# include directives therein. Also emits Makefile dependencies.
#
# Usage: make_device_config.sh SRC DEPFILE-NAME DEPFILE-TARGET > DEST

dest=$1
dep=`dirname $1`-`basename $1`.d
src=$2
src=$1
dep=$2
target=$3
src_dir=`dirname $src`
all_includes=

Expand All @@ -22,7 +24,7 @@ while [ -n "$f" ] ; do
[ $? = 0 ] || exit 1
all_includes="$all_includes $f"
done
process_includes $src > $dest
process_includes $src

cat $src $all_includes | grep -v '^include' > $dest
echo "$1: $all_includes" > $dep
cat $src $all_includes | grep -v '^include'
echo "$target: $all_includes" > $dep

0 comments on commit 15564d8

Please sign in to comment.