bug-glibc
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

2.2.4, gsed != sed


From: Toomas Rosin
Subject: 2.2.4, gsed != sed
Date: Sat, 22 Dec 2001 22:40:48 +0200

Hello!

If gsed != sed, then build fails in the "intl" subdirectory (duplicate
label 'b' in po2test.sed:53).  `configure' checks for gsed, but the
result is not used anywhere.

Fix (against the 2.2.4 release):

--- config.make.in.~1~  Mon Jul 23 19:53:35 2001
+++ config.make.in      Sat Dec 22 22:37:04 2001
@@ -83,6 +83,7 @@
 MIG = @MIG@
 PWD_P = @PWD_P@
 BISON = @BISON@
+SED = @SED@
 
 # Installation tools.
 INSTALL = @INSTALL@
--- intl/Makefile.~1~   Mon Dec 17 02:56:49 2001
+++ intl/Makefile       Mon Dec 17 02:59:13 2001
@@ -77,7 +77,7 @@
 
 $(objpfx)msgs.h: po2test.sed ../po/de.po
        $(make-target-directory)
-       sed -f $^ > $@
+       $(SED) -f $^ > $@
 
 CFLAGS-tst-gettext.c = -DTESTSTRS_H=\"$(objpfx)msgs.h\"
 CFLAGS-tst-gettext2.c = -DOBJPFX=\"$(objpfx)\"

Peace,
Toomas.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]