diff options
author | Jim Meyering <jim@meyering.net> | 2001-11-18 17:59:36 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2001-11-18 17:59:36 +0000 |
commit | 2ce61398cea4c1ede885c4694b9db5064246c9a7 (patch) | |
tree | 1749df77c2c82a78dc096fcb21f2f1540e79c8d6 /lib | |
parent | 2e9825b4e78df113bc18c472f7eea297ea899676 (diff) | |
download | coreutils-2ce61398cea4c1ede885c4694b9db5064246c9a7.tar.xz |
.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Makefile.in | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/Makefile.in b/lib/Makefile.in index 22ade32fd..0af25fac9 100644 --- a/lib/Makefile.in +++ b/lib/Makefile.in @@ -48,6 +48,7 @@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_DATA = @INSTALL_DATA@ +install_sh_DATA = $(install_sh) -c -m 644 INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_HEADER = $(INSTALL_DATA) transform = @program_transform_name@ @@ -205,7 +206,7 @@ libfetish_a_SOURCES = \ libfetish_a_LIBADD = @LIBOBJS@ @ALLOCA@ libfetish_a_DEPENDENCIES = $(libfetish_a_LIBADD) -BUILT_SOURCES = unlocked-io.h getdate.c lstat.c stat.c +BUILT_SOURCES = getdate.c lstat.c stat.c unlocked-io.h MAINTAINERCLEANFILES = $(BUILT_SOURCES) DISTCLEANFILES = lstat.c stat.c unlocked-io.h @@ -354,8 +355,6 @@ all: $(BUILT_SOURCES) $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.ac $(ACLOCAL_M4) cd $(top_srcdir) && \ $(AUTOMAKE) --gnu lib/Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ AR = ar @@ -861,7 +860,7 @@ distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @for file in $(DISTFILES); do \ - if test -f $$file; then d=.; else d=$(srcdir); fi; \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ $(mkinstalldirs) "$(distdir)/$$dir"; \ @@ -973,6 +972,8 @@ stat.c: xstat.in $(srcdir)/xstat.in > $@-t mv $@-t $@ +Makefile: $(BUILT_SOURCES) + # The following is needed in order to install a simple file in $(libdir) # which is shared with other installed packages. We use a list of referencing # packages so that "make uninstall" will remove the file if and only if it |