We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8ccb7d commit 16edf58Copy full SHA for 16edf58
Makefile
@@ -87,11 +87,11 @@ clean:
87
Install-Grub-BIOS:
88
git clone https://git.savannah.gnu.org/git/grub.git
89
sudo apt-get install build-essential autoconf automake
90
- cd grub
91
ls
92
- pushd grub
93
- ./bootstrap
94
- ./autogen.sh
95
- ./configure --prefix=$HOME/local --platform=pc-i386
96
- make
97
- sudo make install
+ cd grub && \
+ ./bootstrap && \
+ ./autogen.sh && \
+ ./configure --prefix=$HOME/local --platform=pc-i386 && \
+ make && \
+ sudo make install && \
+ @echo Installed Grub-BIOS
0 commit comments