mirror of
https://git.savannah.gnu.org/git/coreutils.git
synced 2025-09-10 07:59:52 +02:00
Compare commits
14 Commits
FILEUTILS-
...
FILEUTILS-
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9b34a4a7c6 | ||
|
|
56c8b44ec6 | ||
|
|
50c823be8a | ||
|
|
4909374105 | ||
|
|
2a91869144 | ||
|
|
41bf50ecb3 | ||
|
|
349c3796be | ||
|
|
717429e4bc | ||
|
|
6c81b98e46 | ||
|
|
cf64a504d8 | ||
|
|
ec693397f0 | ||
|
|
04838c31ce | ||
|
|
fa3bbe8eb2 | ||
|
|
39c406f18a |
@@ -2,7 +2,7 @@
|
||||
noinst_LIBRARIES = fu
|
||||
|
||||
EXTRA_DIST = alloca.c basename.c error.c euidaccess.c fnmatch.c fsusage.c \
|
||||
ftruncate.c getdate.y group-member.c memcmp.c memcpy.c memset.c \
|
||||
ftruncate.c getdate.y getline.c group-member.c memcmp.c memcpy.c memset.c \
|
||||
mkdir.c mktime.c mountlist.c obstack.c posixtm.y regex.c rx.c \
|
||||
rename.c rmdir.c rpmatch.c \
|
||||
stpcpy.c strcasecmp.c strdup.c strndup.c strstr.c strtol.c strtoul.c
|
||||
@@ -10,7 +10,7 @@ stpcpy.c strcasecmp.c strdup.c strndup.c strstr.c strtol.c strtoul.c
|
||||
INCLUDES = -I.. -I$(srcdir)
|
||||
INCLUDES = -I.. -I$(srcdir) -I../intl
|
||||
|
||||
fu_SOURCES = getdate.c getline.c getopt.c getopt1.c posixtm.c \
|
||||
fu_SOURCES = getdate.c getopt.c getopt1.c posixtm.c \
|
||||
argmatch.c backupfile.c \
|
||||
dirname.c fileblocks.c filemode.c \
|
||||
full-write.c getversion.c idcache.c \
|
||||
|
||||
@@ -41,7 +41,7 @@ transform = @program_transform_name@
|
||||
noinst_LIBRARIES = fu
|
||||
|
||||
EXTRA_DIST = alloca.c basename.c error.c euidaccess.c fnmatch.c fsusage.c \
|
||||
ftruncate.c getdate.y group-member.c memcmp.c memcpy.c memset.c \
|
||||
ftruncate.c getdate.y getline.c group-member.c memcmp.c memcpy.c memset.c \
|
||||
mkdir.c mktime.c mountlist.c obstack.c posixtm.y regex.c rx.c \
|
||||
rename.c rmdir.c rpmatch.c \
|
||||
stpcpy.c strcasecmp.c strdup.c strndup.c strstr.c strtol.c strtoul.c
|
||||
@@ -49,7 +49,7 @@ stpcpy.c strcasecmp.c strdup.c strndup.c strstr.c strtol.c strtoul.c
|
||||
INCLUDES = -I.. -I$(srcdir)
|
||||
INCLUDES = -I.. -I$(srcdir) -I../intl
|
||||
|
||||
fu_SOURCES = getdate.c getline.c getopt.c getopt1.c posixtm.c \
|
||||
fu_SOURCES = getdate.c getopt.c getopt1.c posixtm.c \
|
||||
argmatch.c backupfile.c \
|
||||
dirname.c fileblocks.c filemode.c \
|
||||
full-write.c getversion.c idcache.c \
|
||||
@@ -77,7 +77,7 @@ CPPFLAGS = @CPPFLAGS@
|
||||
LDFLAGS = @LDFLAGS@
|
||||
LIBS = @LIBS@
|
||||
fu_DEPENDENCIES = @LIBOBJS@ @ALLOCA@
|
||||
fu_OBJECTS = getdate.o getline.o getopt.o getopt1.o posixtm.o argmatch.o \
|
||||
fu_OBJECTS = getdate.o getopt.o getopt1.o posixtm.o argmatch.o \
|
||||
backupfile.o dirname.o fileblocks.o filemode.o full-write.o \
|
||||
getversion.o idcache.o isdir.o long-options.o makepath.o modechange.o \
|
||||
path-concat.o safe-read.o save-cwd.o savedir.o stripslash.o userspec.o \
|
||||
|
||||
@@ -1,5 +1,14 @@
|
||||
Tue Oct 1 12:56:23 1996 Jim Meyering <meyering@na-net.ornl.gov>
|
||||
|
||||
* lib/Makefile.am (fu_SOURCES): Remove getline.c.
|
||||
(EXTRA_DIST): Add getline.c.
|
||||
Reported by François Pinard.
|
||||
|
||||
Mon Sep 30 20:08:45 1996 Jim Meyering <meyering@na-net.ornl.gov>
|
||||
|
||||
* src/Makefile.am (dircolors.h): Don't depend on anything unless
|
||||
in maintainer-mode. Reported by Marcus Daniels.
|
||||
|
||||
* lib/path-concat.c (path_concat): Use K&R style function definition.
|
||||
|
||||
Sun Sep 29 22:00:44 1996 Jim Meyering <meyering@na-net.ornl.gov>
|
||||
|
||||
@@ -1,3 +1,17 @@
|
||||
Tue Oct 1 06:54:22 1996 Jim Meyering <meyering@na-net.ornl.gov>
|
||||
|
||||
* configure.in: Use result of AM_FUNC_STRTOD to set POW_LIBM.
|
||||
* src/Makefile.am (sort_LDADD): Use any library (-lm) that
|
||||
gets substituted for @POW_LIBM@.
|
||||
|
||||
* tests/md5sum-test/md5-rfc (md5sum): Use ../../src/md5sum.
|
||||
|
||||
Mon Sep 30 23:35:46 1996 Jim Meyering <meyering@na-net.ornl.gov>
|
||||
|
||||
* tests/md5sum-test/md5-rfc (md5sum): Set to $srcdir/md5sum.
|
||||
|
||||
* acinclude.m4: Update definitions from gettext-0.24.
|
||||
|
||||
Sun Sep 29 20:04:53 1996 Jim Meyering <meyering@na-net.ornl.gov>
|
||||
|
||||
* tests/sort-test/build-script.pl: Die if close fails.
|
||||
|
||||
@@ -3,7 +3,7 @@ Changes in release 1.20
|
||||
* update configuration system to use automake's aclocal program
|
||||
* configure performs sanity check on CC and CFLAGS to avoid a misleading
|
||||
failure that suggested cross-compiling was the cause
|
||||
* distribute test suites for tr, sort (more will be integrated soon)
|
||||
* distribute test suites for cut, sort, tr (more will be integrated soon)
|
||||
* unexpand no longer gets in endless loop
|
||||
* when verifying checksums, md5sum uses the binary mode flag from the
|
||||
input stream rather than the one from the command line
|
||||
|
||||
@@ -95,7 +95,7 @@ Concatenate FILE(s), or standard input, to standard output.\n\
|
||||
-s, --squeeze-blank never more than one single blank line\n\
|
||||
-t equivalent to -vT\n\
|
||||
-u (ignored)\n\
|
||||
-v, --show-nonprinting use ^ and M- notation, save for LFD and TAB\n\
|
||||
-v, --show-nonprinting use ^ and M- notation, except for LFD and TAB\n\
|
||||
-A, --show-all equivalent to -vET\n\
|
||||
-E, --show-ends display $ at end of each line\n\
|
||||
-T, --show-tabs display TAB characters as ^I\n\
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#! /bin/sh
|
||||
|
||||
md5sum=${MD5SUM:-md5sum}
|
||||
md5sum=${MD5SUM:-../../src/md5sum}
|
||||
|
||||
test "$VERBOSE" = yes && $md5sum --version
|
||||
|
||||
|
||||
Reference in New Issue
Block a user