]> Dogcows Code - chaz/tar/commitdiff
* lib/Makefile.tmpl (localedir.h): Omit needless quotes and a
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 4 Jan 2005 20:20:56 +0000 (20:20 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 4 Jan 2005 20:20:56 +0000 (20:20 +0000)
needless sed command.

ChangeLog
lib/Makefile.tmpl

index b9e7e5743004e4feeb5e82e266cbb045c7c9cfcf..fffbd36d3318464aaa641e1e6c549d931e3934be 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * lib/Makefile.tmpl (localedir.h): Omit needless quotes and a
+       needless sed command.  Problem reported by Paul Jarc.
+
 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
 
        Accommodate latest gnulib.
index 04caf8793f68298f796e11eda24fb4f6375443a4..3a68596c2500adef3bb0acd0ceef2fd4e0090a85 100644 (file)
@@ -1,6 +1,6 @@
 # Makefile for GNU tar library.
 
-# Copyright (C) 1994, 1995, 1996, 1997, 1999, 2000, 2001, 2003, 2004
+# Copyright (C) 1994, 1995, 1996, 1997, 1999, 2000, 2001, 2003, 2004, 2005
 # Free Software Foundation, Inc.
 
 ## This program is free software; you can redistribute it and/or modify
@@ -28,7 +28,7 @@ DISTCLEANFILES = localedir.h
 localedir.h : Makefile
        echo '#define LOCALEDIR "$(localedir)"' >$@
        echo "#ifndef DEFAULT_RMT_COMMAND" >> $@
-       echo "# define DEFAULT_RMT_COMMAND \"$(DEFAULT_RMT_DIR)/`echo \"rmt\" | sed 's,^.*/,,;$(transform)'`$(EXEEXT)\"" >> $@
+       echo "# define DEFAULT_RMT_COMMAND \"$(DEFAULT_RMT_DIR)/`echo rmt | sed '$(transform)'`$(EXEEXT)\"" >> $@
        echo "#endif" >> $@
 
 rtapelib.o: localedir.h
@@ -51,6 +51,5 @@ $(srcdir)/getdate.c: getdate.y
          mv -f y.tab.c getdate.c
 
 SUFFIXES = .o .c .h
-CLEANFILES = 
+CLEANFILES =
 # gnulib modules
-
This page took 0.029539 seconds and 4 git commands to generate.