[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
FYI: EXEEXT rules
From: |
Eric Blake |
Subject: |
FYI: EXEEXT rules |
Date: |
Fri, 05 May 2006 06:42:01 -0600 |
User-agent: |
Thunderbird 1.5.0.2 (Windows/20060308) |
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
I finally tested out my commit privileges with a portion of this old patch:
http://lists.gnu.org/archive/html/m4-patches/2005-09/msg00000.html
(The remainder of the patch was re-proposed by Bruno,
http://lists.gnu.org/archive/html/bug-m4/2006-05/msg00001.html)
2006-05-04 Eric Blake <address@hidden>
* Makefile.am (doc/m4.1): Use EXEEXT on built binary.
Cleanup whitespace.
- --
Life is short - so eat dessert first!
Eric Blake address@hidden
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2.1 (Cygwin)
Comment: Public key at home.comcast.net/~ericblake/eblake.gpg
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org
iD8DBQFEW0gZ84KuGfSFAYARAvBSAKCGci9jO+DAtXPajtVe9yztSI1nRwCffF4S
+DdkHxOzOb8Oy+k3DS0Symk=
=dA2l
-----END PGP SIGNATURE-----
Index: Makefile.am
===================================================================
RCS file: /sources/m4/m4/Makefile.am,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -p -r1.23 -r1.24
--- Makefile.am 7 May 2005 19:46:13 -0000 1.23
+++ Makefile.am 5 May 2006 12:34:33 -0000 1.24
@@ -1,6 +1,7 @@
## This file is part of GNU M4.
##
-## Copyright (C) 2000, 2001, 2003, 2004, 2005 Free Software Foundation, Inc.
+## Copyright (C) 2000, 2001, 2003, 2004, 2005, 2006 Free Software
+## Foundation, Inc.
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
@@ -150,13 +151,13 @@ endif
## pkglibexec_LTLIBRARIES += modules/perl.la
## modules_perl_la_CPPFLAGS = `$(PERL) -MExtUtils::Embed -e ccopts`
## modules_perl_la_LDFLAGS = \
-## $(module_ldflags) `$(PERL) -MExtUtils::Embed -e ldopts`
+## $(module_ldflags) `$(PERL) -MExtUtils::Embed -e ldopts`
## modules_perl_la_LIBADD = $(module_libadd)
## BUILT_SOURCES = perlxsi.c
## DISTCLEANFILES += $(BUILT_SOURCES)
##
## perlxsi.c:
-## $(PERL) -MExtUtils::Embed -e xsinit -- -o perlxsi.c
+## $(PERL) -MExtUtils::Embed -e xsinit -- -o perlxsi.c
module_check = -rpath /dev/null
check_LTLIBRARIES = \
@@ -244,10 +245,10 @@ ltdl/libltdlc.la:
info_TEXINFOS = doc/m4.texinfo
dist_man_MANS = $(srcdir)/doc/m4.1
-$(srcdir)/doc/m4.1: doc/helptoman.pl src/m4
- @if test -f src/m4; then \
+$(srcdir)/doc/m4.1: doc/helptoman.pl src/m4$(EXEEXT)
+ @if test -f src/m4$(EXEEXT); then \
echo "Updating the \`man' page \`$@'"; \
- $(PERL) $(srcdir)/doc/helptoman.pl src/m4 > address@hidden; \
+ $(PERL) $(srcdir)/doc/helptoman.pl src/m4$(EXEEXT) > address@hidden; \
cmp -s address@hidden $(srcdir)/doc/$@ || cp address@hidden
$(srcdir)/doc/$@; \
rm -f address@hidden; \
else \
- FYI: EXEEXT rules,
Eric Blake <=