mirror of
https://https.git.savannah.gnu.org/git/gettext.git
synced 2026-01-26 15:39:11 +00:00
Let "make dist" work with builddir !- srcdir.
This commit is contained in:
parent
02d1c7abcd
commit
f5762cd8ef
@ -1,3 +1,8 @@
|
||||
2001-05-18 Bruno Haible <haible@clisp.cons.org>
|
||||
|
||||
* Makefile.in (dist): Don't assume $(srcdir) = ".". Distribute
|
||||
file in either current directory or $(srcdir), whichever exists.
|
||||
|
||||
2001-05-11 Bruno Haible <haible@clisp.cons.org>
|
||||
|
||||
* Makefile.in (install-exec): Don't install charset.alias on glibc 2.1
|
||||
|
||||
@ -292,8 +292,9 @@ dist distdir: Makefile
|
||||
fi; \
|
||||
$(MAKE) $(DISTFILES.common) $(DISTFILES.generated) $$additional; \
|
||||
for file in ChangeLog $(DISTFILES.common) $(DISTFILES.generated) $$additional; do \
|
||||
ln $(srcdir)/$$file $(distdir) 2> /dev/null \
|
||||
|| cp -p $(srcdir)/$$file $(distdir); \
|
||||
if test -f $$file; then dir=.; else dir=$(srcdir); fi; \
|
||||
ln $$dir/$$file $(distdir) 2> /dev/null \
|
||||
|| cp -p $$dir/$$file $(distdir); \
|
||||
done
|
||||
|
||||
Makefile: Makefile.in ../config.status
|
||||
|
||||
@ -1,3 +1,8 @@
|
||||
2001-05-18 Bruno Haible <haible@clisp.cons.org>
|
||||
|
||||
* Makefile.in.in (dist2): Don't assume $(srcdir) = ".". Distribute
|
||||
file in either current directory or $(srcdir), whichever exists.
|
||||
|
||||
2001-05-17 Bruno Haible <haible@clisp.cons.org>
|
||||
|
||||
* cs.po: New file, from Vladimir Michl <Vladimir.Michl@seznam.cz>.
|
||||
|
||||
@ -161,7 +161,8 @@ dist distdir:
|
||||
dist2: $(DISTFILES)
|
||||
dists="$(DISTFILES)"; \
|
||||
for file in $$dists; do \
|
||||
cp -p $(srcdir)/$$file $(distdir); \
|
||||
if test -f $$file; then dir=.; else dir=$(srcdir); fi; \
|
||||
cp -p $$dir/$$file $(distdir); \
|
||||
done
|
||||
|
||||
update-po: Makefile
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user