CVS update by malcolmp xemacs/man/internals ...
xemacs-cvs at xemacs.org
xemacs-cvs at xemacs.org
Mon Jan 1 05:04:16 EST 2007
User: malcolmp
Date: 07/01/01 11:04:16
Modified: xemacs/man/internals internals.texi
Log:
Use 'grep -E' rather than egrep and 'grep -F' rather than fgrep.
Revision Changes Path
1.520 +4 -0 XEmacs/xemacs/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/ChangeLog,v
retrieving revision 1.519
retrieving revision 1.520
diff -u -p -r1.519 -r1.520
--- ChangeLog 2006/12/28 12:56:00 1.519
+++ ChangeLog 2007/01/01 10:03:52 1.520
@@ -1,3 +1,7 @@
+2007-01-01 Malcolm Purvis <malcolmp at xemacs.org>
+
+ * aclocal.m4 (XE_SHLIB_STUFF): Use $EGREP instead of egrep.
+
2006-12-28 Malcolm Purvis <malcolmp at xemacs.org>
* configure.ac: Ensure ac_configure_args contains a leading space
1.14 +3 -3 XEmacs/xemacs/aclocal.m4
Index: aclocal.m4
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/aclocal.m4,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -p -r1.13 -r1.14
--- aclocal.m4 2006/03/28 15:55:49 1.13
+++ aclocal.m4 2007/01/01 10:03:53 1.14
@@ -355,7 +355,7 @@ if test -z "$LTLD"; then
# Check to see if the program is GNU ld. I'd rather use --version,
# but apparently some GNU ld's only accept -v.
# Break only if it was the GNU/non-GNU ld that we prefer.
- if "$LTLD" -v 2>&1 < /dev/null | egrep '(GNU|with BFD)' > /dev/null; then
+ if "$LTLD" -v 2>&1 < /dev/null | $EGREP '(GNU|with BFD)' > /dev/null; then
xe_gnu_ld=yes
else
xe_gnu_ld=no
@@ -385,7 +385,7 @@ ld_dynamic_link_flags=
# Check to see if it really is or isn't GNU ld.
AC_MSG_CHECKING([if the linker is GNU ld])
# I'd rather use --version here, but apparently some GNU ld's only accept -v.
-if $LTLD -v 2>&1 </dev/null | egrep '(GNU|with BFD)' 1>&5; then
+if $LTLD -v 2>&1 </dev/null | $EGREP '(GNU|with BFD)' 1>&5; then
xe_gnu_ld=yes
else
xe_gnu_ld=no
@@ -425,7 +425,7 @@ else
can_build_shared=yes
if test "$xe_gnu_ld" = yes && test "$gnu_ld_acts_native" != yes; then
# See if GNU ld supports shared libraries.
- if $LTLD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then
+ if $LTLD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null; then
dll_ld=$CC
dll_ldflags="-shared"
ld_shlibs=yes
1.291 +3 -3 XEmacs/xemacs/configure
Index: configure
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/configure,v
retrieving revision 1.290
retrieving revision 1.291
diff -u -p -r1.290 -r1.291
--- configure 2006/12/28 12:56:01 1.290
+++ configure 2007/01/01 10:03:53 1.291
@@ -21488,7 +21488,7 @@ echo $ECHO_N "checking for GNU ld... $EC
# Check to see if the program is GNU ld. I'd rather use --version,
# but apparently some GNU ld's only accept -v.
# Break only if it was the GNU/non-GNU ld that we prefer.
- if "$LTLD" -v 2>&1 < /dev/null | egrep '(GNU|with BFD)' > /dev/null; then
+ if "$LTLD" -v 2>&1 < /dev/null | $EGREP '(GNU|with BFD)' > /dev/null; then
xe_gnu_ld=yes
else
xe_gnu_ld=no
@@ -21520,7 +21520,7 @@ ld_dynamic_link_flags=
echo "$as_me:$LINENO: checking if the linker is GNU ld" >&5
echo $ECHO_N "checking if the linker is GNU ld... $ECHO_C" >&6
# I'd rather use --version here, but apparently some GNU ld's only accept -v.
-if $LTLD -v 2>&1 </dev/null | egrep '(GNU|with BFD)' 1>&5; then
+if $LTLD -v 2>&1 </dev/null | $EGREP '(GNU|with BFD)' 1>&5; then
xe_gnu_ld=yes
else
xe_gnu_ld=no
@@ -21561,7 +21561,7 @@ echo $ECHO_N "checking whether the linke
can_build_shared=yes
if test "$xe_gnu_ld" = yes && test "$gnu_ld_acts_native" != yes; then
# See if GNU ld supports shared libraries.
- if $LTLD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then
+ if $LTLD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null; then
dll_ld=$CC
dll_ldflags="-shared"
ld_shlibs=yes
1.352 +5 -0 XEmacs/xemacs/man/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/man/ChangeLog,v
retrieving revision 1.351
retrieving revision 1.352
diff -u -p -r1.351 -r1.352
--- ChangeLog 2007/01/01 07:46:34 1.351
+++ ChangeLog 2007/01/01 10:04:11 1.352
@@ -1,3 +1,8 @@
+2007-01-01 Malcolm Purvis <malcolmp at xemacs.org>
+
+ * internals/internals.texi (Ben's README): Use 'grep -F' instead
+ of fgrep.
+
2006-11-07 Robert Pluim <rpluim at gmail.com>
* lispref/os.texi (User Identification): The code uses HOMEPATH,
1.78 +1 -1 XEmacs/xemacs/man/internals/internals.texi
Index: internals.texi
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/man/internals/internals.texi,v
retrieving revision 1.77
retrieving revision 1.78
diff -u -p -r1.77 -r1.78
--- internals.texi 2006/11/17 02:50:32 1.77
+++ internals.texi 2007/01/01 10:04:13 1.78
@@ -16610,7 +16610,7 @@ unicode-encapsulate', after removing eve
the function names.) Use something like
@example
-fgrep -f ../nmkun.txt -w [a-hj-z]*.[ch] |m
+grep -F -f ../nmkun.txt -w [a-hj-z]*.[ch] |m
@end example
in the source directory, which does a word match and skips
More information about the XEmacs-CVS
mailing list