Skip to content

Commit

Permalink
some minor corrections
Browse files Browse the repository at this point in the history
  • Loading branch information
createyourpersonalaccount committed Jan 24, 2024
1 parent f858105 commit 04a8834
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion _posts/2022-10-05-gentoo-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ We will use ext4 as the filesystem. We assume the disk is /dev/sda with 16G of R
1. `fdisk /dev/sda`
2. Use the following key sequence, each time pressing enter in between:

g n 1 +256M t 1 n 2 +16G t 2 19 n 3 RET RET w
g n 1 RET +256M t 1 n 2 +16G t 2 19 n 3 RET RET w

3. `mkfs.vfat -F 32 /dev/sda1`
4. `mkfs.ext4 /dev/sda3`
Expand Down
5 changes: 3 additions & 2 deletions _posts/2022-12-20-GNU-autotools.md
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ To enable libtool, in `configure.ac`

then in `Makefile.am`,

lib_LTLIBRARIES = libfoo.a # declare a libtool archive
lib_LTLIBRARIES = libfoo.la # declare a libtool archive
libfoo_la_SOURCES = foo.c foo.h
...
runme_LDADD = libfoo.la
Expand All @@ -401,7 +401,8 @@ one adds

Then in the `Makefile.am`, one uses

ACLOCAL_AMFLAGS = -I m4 # options to pass to aclocal
# options to pass to aclocal
ACLOCAL_AMFLAGS = -I m4

### Wrapper scripts

Expand Down

0 comments on commit 04a8834

Please sign in to comment.