annotate sources/patches/bash-fixsize.patch @ 1265:918501f802d1

Update squashfs and kernel to current versions.
author Rob Landley <rob@landley.net>
date Thu, 21 Oct 2010 19:09:51 -0500
parents 12209d3f61c0
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
165
12209d3f61c0 Path from George Boudreau to make bash build more portable.
Rob Landley <rob@landley.net>
parents:
diff changeset
1 George Bodreau noticed that bash uses size rather than $ARCH-size, which can go
12209d3f61c0 Path from George Boudreau to make bash build more portable.
Rob Landley <rob@landley.net>
parents:
diff changeset
2 "boing" on unrecognized file formats. The use here is purely cosmetic, so
12209d3f61c0 Path from George Boudreau to make bash build more portable.
Rob Landley <rob@landley.net>
parents:
diff changeset
3 yank it to avoid problems.
12209d3f61c0 Path from George Boudreau to make bash build more portable.
Rob Landley <rob@landley.net>
parents:
diff changeset
4
12209d3f61c0 Path from George Boudreau to make bash build more portable.
Rob Landley <rob@landley.net>
parents:
diff changeset
5 --- bash-old/Makefile.in 2002-05-31 13:44:23.000000000 -0400
12209d3f61c0 Path from George Boudreau to make bash build more portable.
Rob Landley <rob@landley.net>
parents:
diff changeset
6 +++ bash-2.05b/Makefile.in 2007-04-17 17:25:19.000000000 -0400
12209d3f61c0 Path from George Boudreau to make bash build more portable.
Rob Landley <rob@landley.net>
parents:
diff changeset
7 @@ -471,7 +471,6 @@
12209d3f61c0 Path from George Boudreau to make bash build more portable.
Rob Landley <rob@landley.net>
parents:
diff changeset
8 $(RM) $@
12209d3f61c0 Path from George Boudreau to make bash build more portable.
Rob Landley <rob@landley.net>
parents:
diff changeset
9 $(PURIFY) $(CC) $(BUILTINS_LDFLAGS) $(LIBRARY_LDFLAGS) $(LDFLAGS) -o $(Program) $(OBJECTS) $(LIBS)
12209d3f61c0 Path from George Boudreau to make bash build more portable.
Rob Landley <rob@landley.net>
parents:
diff changeset
10 ls -l $(Program)
12209d3f61c0 Path from George Boudreau to make bash build more portable.
Rob Landley <rob@landley.net>
parents:
diff changeset
11 - size $(Program)
12209d3f61c0 Path from George Boudreau to make bash build more portable.
Rob Landley <rob@landley.net>
parents:
diff changeset
12
12209d3f61c0 Path from George Boudreau to make bash build more portable.
Rob Landley <rob@landley.net>
parents:
diff changeset
13 .build: $(SOURCES) config.h Makefile version.h $(VERSPROG)
12209d3f61c0 Path from George Boudreau to make bash build more portable.
Rob Landley <rob@landley.net>
parents:
diff changeset
14 @echo
12209d3f61c0 Path from George Boudreau to make bash build more portable.
Rob Landley <rob@landley.net>
parents:
diff changeset
15 @@ -493,7 +492,6 @@
12209d3f61c0 Path from George Boudreau to make bash build more portable.
Rob Landley <rob@landley.net>
parents:
diff changeset
16 strip: $(Program) .made
12209d3f61c0 Path from George Boudreau to make bash build more portable.
Rob Landley <rob@landley.net>
parents:
diff changeset
17 strip $(Program)
12209d3f61c0 Path from George Boudreau to make bash build more portable.
Rob Landley <rob@landley.net>
parents:
diff changeset
18 ls -l $(Program)
12209d3f61c0 Path from George Boudreau to make bash build more portable.
Rob Landley <rob@landley.net>
parents:
diff changeset
19 - size $(Program)
12209d3f61c0 Path from George Boudreau to make bash build more portable.
Rob Landley <rob@landley.net>
parents:
diff changeset
20
12209d3f61c0 Path from George Boudreau to make bash build more portable.
Rob Landley <rob@landley.net>
parents:
diff changeset
21 lint:
12209d3f61c0 Path from George Boudreau to make bash build more portable.
Rob Landley <rob@landley.net>
parents:
diff changeset
22 ${MAKE} ${MFLAGS} CFLAGS='${GCC_LINT_FLAGS}' .made