diff options
author | Jakub Jelinek <jakub@redhat.com> | 2006-03-02 09:06:20 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2006-03-02 09:06:20 +0000 |
commit | 4a22fa60cd42eba5ab1931547be33f7764ef6f73 (patch) | |
tree | bf57a7c7809c17153a9d680ebf8c6e4dd553cd64 /Makefile | |
parent | a07552b6e042c28f925c6df06a1849f734975ea2 (diff) | |
download | glibc-4a22fa60cd42eba5ab1931547be33f7764ef6f73.tar.gz glibc-4a22fa60cd42eba5ab1931547be33f7764ef6f73.tar.xz glibc-4a22fa60cd42eba5ab1931547be33f7764ef6f73.zip |
Updated to fedora-glibc-20060302T0855
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Makefile b/Makefile index 8db0ff51f4..43c4f4d4b5 100644 --- a/Makefile +++ b/Makefile @@ -358,20 +358,18 @@ endif files-for-dist := README FAQ INSTALL NOTES configure tag-of-stem = glibc-$(subst .,_,$*) +dist-selector = -r $(tag-of-stem) # Add-ons in the main repository but distributed in their own tar files. dist-separate = libidn -# Directories in each add-on. -dist-separate-libidn = libidn - glibc-%.tar $(dist-separate:%=glibc-%-%.tar): $(files-for-dist) \ $(foreach D,$(dist-separate),\ $D/configure) @rm -fr glibc-$* $(MAKE) -q `find sysdeps $(addsuffix /sysdeps,$(sysdeps-add-ons)) \ -name configure` - cvs $(CVSOPTS) -Q export -d glibc-$* -r $(tag-of-stem) libc + cvs $(CVSOPTS) -Q export -d glibc-$* $(dist-selector) libc # Touch all the configure scripts going into the tarball since cvs export # might have delivered configure.in newer than configure. find glibc-$* -name configure -print | xargs touch @@ -380,8 +378,10 @@ glibc-%.tar $(dist-separate:%=glibc-%-%.tar): $(files-for-dist) \ rm -fr glibc-$* define dist-do-separate-dirs $(foreach dir,$(dist-separate), - tar cf glibc-$(dir)-$*.tar -C glibc-$* $(dist-separate-$(dir)) - rm -rf $(addprefix glibc-$*/,$(dist-separate-$(dir))) + @rm -fr glibc-$(dir)-$* + mv glibc-$*/$(dir) glibc-$(dir)-$* + tar cf glibc-$(dir)-$*.tar glibc-$(dir)-$* + rm -fr glibc-$(dir)-$* ) endef @@ -399,7 +399,7 @@ tag-%: $(files-for-dist) define format-me @rm -f $@ -makeinfo --no-validate --no-warn --no-headers $< -o $@ +makeinfo --no-validate --plaintext --no-number-sections $< -o $@ -chmod a-w $@ endef INSTALL: manual/install.texi; $(format-me) |