diff options
author | Peter Stuge <peter@stuge.se> | 2009-11-28 04:45:34 +0000 |
---|---|---|
committer | Peter Stuge <peter@stuge.se> | 2009-11-28 04:45:34 +0000 |
commit | be89c41ae396577e1dd4b685dd6ee255a19df92a (patch) | |
tree | 5b85894d433cf71af7d65c6303bb6562b3fffd34 /util/msrtool/configure | |
parent | 436f99b72a75e38c4a1558a23642ea838e621745 (diff) | |
download | coreboot-be89c41ae396577e1dd4b685dd6ee255a19df92a.tar.xz |
msrtool: Actually do PREFIX substitution in Makefile
Signed-off-by: Peter Stuge <peter@stuge.se>
Acked-by: Peter Stuge <peter@stuge.se>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4963 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/msrtool/configure')
-rwxr-xr-x | util/msrtool/configure | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/msrtool/configure b/util/msrtool/configure index ee2d6ccd5d..61ef143d9e 100755 --- a/util/msrtool/configure +++ b/util/msrtool/configure @@ -2,7 +2,7 @@ # # This file is part of msrtool. # -# Copyright (c) 2008 Peter Stuge <peter@stuge.se> +# Copyright (c) 2008, 2009 Peter Stuge <peter@stuge.se> # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License version 2 as @@ -180,7 +180,7 @@ sed -e "s#@VERSION@#${VERSION}#g" \ -e "s#@CFLAGS@#${CFLAGS}#g" \ -e "s#@LDFLAGS@#${LDFLAGS}#g" \ -e "s#@INSTALL@#${INSTALL}#g" \ - -e "s#@PREFIX@#/usr/local#g" \ + -e "s#@PREFIX@#${PREFIX}#g" \ Makefile.in >> Makefile echo " done" echo |