diff options
author | jimb <jimb@7b3dc134-2b1b-0410-93df-9e9f96275f8d> | 2007-05-26 08:16:38 +0000 |
---|---|---|
committer | jimb <jimb@7b3dc134-2b1b-0410-93df-9e9f96275f8d> | 2007-05-26 08:16:38 +0000 |
commit | 589bab611205617eff7dd66c34649ec7176821fa (patch) | |
tree | f2bbd3b02fddd8da9368542995366a3de86a949c /libc/Makefile | |
parent | 4d3a9860fce21aedcdc076117ec76f87d84add34 (diff) | |
download | eglibc2-589bab611205617eff7dd66c34649ec7176821fa.tar.gz |
* Makefile (TAGS): Avoid backslashes in single-quoted strings.
git-svn-id: svn://svn.eglibc.org/trunk@2300 7b3dc134-2b1b-0410-93df-9e9f96275f8d
Diffstat (limited to 'libc/Makefile')
-rw-r--r-- | libc/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/libc/Makefile b/libc/Makefile index 596cd0c49..f721ca833 100644 --- a/libc/Makefile +++ b/libc/Makefile @@ -356,9 +356,10 @@ endif .PHONY: TAGS TAGS: - scripts/list-sources.sh | sed -n '/Makefile/p;\ - $(foreach S,[chsSyl] cxx sh bash pl,\ - $(subst .,\.,/.$S\(.in\)*$$/p;))' \ + scripts/list-sources.sh \ + | sed -n -e '/Makefile/p;' \ + -e '$(foreach S,[chsSyl] cxx sh bash pl,\ + $(subst .,\.,/.$S\(.in\)*$$/p;))' \ | $(ETAGS) -o $@ - # Make the distribution tarfile. |