diff options
author | Michael S. Tsirkin <mst@redhat.com> | 2015-02-19 08:48:46 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2015-02-27 19:42:45 +0100 |
commit | 12ccfec9684679fc1945b5b5020487b2cb17dc06 (patch) | |
tree | e55c16828e7fd6af45fc38ca29421ebb33530e8a /scripts | |
parent | 23cab7b7a9cb365b15eee953a0dd6cdb9198ae6c (diff) | |
download | qemu-12ccfec9684679fc1945b5b5020487b2cb17dc06.zip |
Makefile: don't silence mak file test with V=1
V=1 should show what's going on, it's not nice
to silence things unconditionally.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Message-Id: <1424332114-13440-1-git-send-email-mst@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/make_device_config.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/make_device_config.sh b/scripts/make_device_config.sh index 7242707819..7958086132 100644 --- a/scripts/make_device_config.sh +++ b/scripts/make_device_config.sh @@ -2,7 +2,7 @@ # Construct a target device config file from a default, pulling in any # files from include directives. -dest=$1.tmp +dest=$1 dep=`dirname $1`-`basename $1`.d src=$2 src_dir=`dirname $src` |