Skip to content

Commit

Permalink
reiserfsprogs: fix compile
Browse files Browse the repository at this point in the history
- fixed SRCURL
- fix build (LFS)
```
../include/misc.h:76:26: error: unknown type name ‘loff_t’; did you mean ‘off_t’?

```
  • Loading branch information
wwwutz committed Sep 14, 2021
1 parent ca5cb52 commit cfd439a
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions reiserfsprogs.be0
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
#!/usr/bin/env beesh

# BEE_VERSION reiserfsprogs-3.6.27-0
# BEE_VERSION reiserfsprogs-3.6.27-1


SRCURL[0]="http://www.kernel.org/pub/linux/utils/fs/reiserfs/reiserfsprogs-${PKGVERSION}.tar.bz2"
SRCURL[0]="https://mirrors.edge.kernel.org/pub/linux/kernel/people/jeffm/reiserfsprogs/v3.6.27/reiserfsprogs-3.6.27.tar.gz"
# SRCURL[0]="https://mirrors.edge.kernel.org/pub/linux/kernel/people/jeffm/reiserfsprogs/v3.6.27/reiserfsprogs-3.6.27.tar.gz"
SRCURL[0]="https://beehive.molgen.mpg.de/a5c172410b62b5d035e294a7721e93f6/reiserfsprogs-3.6.27.tar.gz"

SBINDIR=/sbin

Expand All @@ -18,9 +17,14 @@ build_in_sourcedir
# bee_extract "${@}"
#}

#mee_patch() {
# bee_patch "${@}"
#}
mee_patch() {
bee_patch "${@}"
sed -i '/parse_time.h/i #define _GNU_SOURCE' lib/parse_time.c
}

mee_patch_post() {
autoreconf -fiv
}

#mee_configure() {
# bee_configure
Expand All @@ -36,7 +40,3 @@ mee_install() {
ln -sf reiserfsck ${D}${SBINDIR}/fsck.reiserfs
ln -sf mkreiserfs ${D}${SBINDIR}/mkfs.reiserfs
}

#mee_install_post() {
# exit
#}

0 comments on commit cfd439a

Please sign in to comment.