Changeset 1726
- Timestamp:
- 09/09/06 03:55:42 (2 years ago)
- Location:
- branches/6.2
- Files:
-
- 3 modified
-
Makefile (modified) (2 diffs)
-
packages/grub/Makefile (modified) (2 diffs)
-
packages/reiser4progs/Makefile (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/6.2/Makefile
r1724 r1726 230 230 231 231 post-bash: ch-bzip2 ch-diffutils ch-e2fsprogs ch-file ch-findutils ch-flex \ 232 ch-g rub ch-gawk ch-gettext ch-grep ch-groff ch-gzip ch-inetutils \232 ch-gawk ch-gettext ch-grep ch-groff ch-gzip ch-inetutils \ 233 233 ch-iproute2 ch-kbd ch-less ch-make ch-man-db ch-mktemp \ 234 234 ch-module-init-tools ch-patch ch-psmisc ch-shadow ch-sysklogd \ … … 261 261 ch-hibernate-script ch-parted 262 262 ifeq ($(LFS-ARCH),x86) 263 make ch-vbetool ch-bin86 ch- lilo ch-syslinux ch-gcc33 ch-proprietary-drivers264 make ch- binutils64 ch-gcc64 ch-linux64263 make ch-vbetool ch-bin86 ch-grub ch-lilo ch-syslinux ch-gcc33 264 make ch-proprietary-drivers ch-binutils64 ch-gcc64 ch-linux64 265 265 endif 266 266 ifeq ($(LFS-ARCH),ppc) 267 make ch-yaboot 268 make ch-hfsutils 269 make ch-mac-fdisk 267 make ch-yaboot ch-hfsutils ch-mac-fdisk 270 268 endif 271 269 make update-caches -
branches/6.2/packages/grub/Makefile
r1685 r1726 13 13 SHA-$(PATCH1)= 651801fe6d851c9f59ccd16b6bd49f1358c9594c 14 14 15 PATCH2=$(DIR)-reiser4-20050808.diff 16 URL-$(PATCH2)= ftp://ftp.namesys.com/pub/reiser4progs/$(PATCH2) 17 SHA-$(PATCH2)= ffe2628e07a4c0dcf98360b03d9828936ca21d28 18 15 19 # Targets 16 20 … … 21 25 'cd $(ROOT) && make ch-$(NM) $(chbash-post-bash)' 22 26 23 stage2: Makefile $(FILE) $(PATCH1) 27 stage2: Makefile $(FILE) $(PATCH1) $(PATCH2) 24 28 $(std_build) 25 29 cp $(SRC)/{$(FILE),$(PATCH1)} $(LFSSRC) 26 30 27 31 compile-stage2: 28 ifeq ($(LFS-ARCH),x86) 29 patch -Np1 -i ../$(PATCH1) 32 patch -Np1 -i ../$(PATCH2) 33 # This will fail to add -fno-strict-aliasing to CFLAGS, 34 # but this flag is already present on the CD. So ignore the reject. 35 patch -Np1 -i ../$(PATCH1) || true 36 autoreconf --force --install --verbose 30 37 ./configure --prefix=/usr 31 38 make $(PM) 32 39 make install 33 endif34 40 35 41 clean: -
branches/6.2/packages/reiser4progs/Makefile
r1272 r1726 21 21 22 22 compile-stage2: 23 ./configure --prefix=/usr --sbindir=/sbin 23 # GRUB doesn't like shared libreiser4_minimal 24 ./configure --prefix=/usr --sbindir=/sbin --enable-static 24 25 make $(PM) 25 26 make install
