diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2014-05-09 16:06:41 +0100 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2014-05-13 12:48:52 +0100 |
commit | fccae3226da3238eb857dfdf8f997434b168372c (patch) | |
tree | 3da8a5261577a913fa348a04c676687b8c1fcfb1 /bsd-user | |
parent | 41a3f3c1bc82caf79eb858f81f43d57265c42d31 (diff) | |
download | qemu-fccae3226da3238eb857dfdf8f997434b168372c.tar.gz qemu-fccae3226da3238eb857dfdf8f997434b168372c.tar.bz2 qemu-fccae3226da3238eb857dfdf8f997434b168372c.zip |
bsd-user: Remove reference to CONFIG_UNAME_RELEASE
Commit e586822a5 broke the bsd-user build when it removed the
CONFIG_UNAME_RELEASE define but forgot to remove the use of it
in bsd-user. Fix this in the simplest possible way (bsd-user
doesn't make any use at all of the qemu_uname_release variable
except to allow it to be pointlessly set by the user, so this
is all we need to do.)
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Message-id: 1399648001-20980-1-git-send-email-peter.maydell@linaro.org
Diffstat (limited to 'bsd-user')
-rw-r--r-- | bsd-user/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bsd-user/main.c b/bsd-user/main.c index f81ba55af8..0f9169d6dd 100644 --- a/bsd-user/main.c +++ b/bsd-user/main.c @@ -43,7 +43,7 @@ unsigned long reserved_va; #endif static const char *interp_prefix = CONFIG_QEMU_INTERP_PREFIX; -const char *qemu_uname_release = CONFIG_UNAME_RELEASE; +const char *qemu_uname_release; extern char **environ; enum BSDType bsd_type; |