summaryrefslogtreecommitdiff
path: root/build-aux
Commit message (Collapse)AuthorAgeFilesLines
* vc-list-files: fix another quoting bugJim Meyering2009-04-251-2/+4
| | | | | * build-aux/vc-list-files: Avoid sed backslash expansion of pathological directory names.
* vc-list-files: fix shell quoting errorEric Blake2009-04-251-3/+4
| | | | | | | * build-aux/vc-list-files: Protect against $ in $dir. Normalize timestamp. Signed-off-by: Eric Blake <ebb9@byu.net>
* vc-list-files: restore lost functionality with subdir argumentJim Meyering2009-04-251-8/+4
| | | | | | * build-aux/vc-list-files: When given a non-"." sub-directory argument, substitute the $dir/ prefix back onto each resulting name. Otherwise, coreutils' root_tests check would fail.
* vc-list-files: ignore git symlinksEric Blake2009-04-241-2/+12
| | | | | | | * build-aux/vc-list-files (.git): Use ls-tree and a filter, rather than ls-files, to ignore git symlinks. Signed-off-by: Eric Blake <ebb9@byu.net>
* autoupdateKarl Berry2009-04-231-2/+8
|
* autoupdateKarl Berry2009-04-182-3/+7
|
* useless-if-before-free: improve conversion codeJim Meyering2009-04-161-5/+7
| | | | | * build-aux/useless-if-before-free: Adjust code-in-comment to match "...!= 0" as well as "...!= NULL". emacs has one of the former.
* * build-aux/gendocs.sh: Restore lost x bit.Eric Blake2009-04-131-0/+0
| | | | Signed-off-by: Eric Blake <ebb9@byu.net>
* remove trailing whitespace to placate Jim, more license syncsKarl Berry2009-04-131-4/+4
|
* useless-if-before-free: show how to remove braced useless free, tooJim Meyering2009-04-071-3/+9
| | | | * build-aux/useless-if-before-free: still only in a comment, though.
* update from texinfoKarl Berry2009-03-291-1/+5
|
* update from texinfoKarl Berry2009-03-221-10/+25
|
* update from texinfoKarl Berry2009-03-211-40/+50
|
* update from texinfoKarl Berry2009-03-201-37/+37
|
* update from texinfoKarl Berry2009-03-201-10/+22
|
* build-aux/compile: sync from automakeEric Blake2009-03-181-0/+142
| | | | | | | * build-aux/compile: New file, from automake. * config/srclist.txt: Mention build-aux/compile. Signed-off-by: Eric Blake <ebb9@byu.net>
* autoupdateKarl Berry2009-03-061-2/+2
|
* Specify archive suffixes to announce-gen (the --archive-suffix option)Sergey Poznyakoff2009-03-051-8/+9
|
* autoupdateKarl Berry2009-03-052-96/+293
|
* build-aux/depcomp: restore lost x bitEric Blake2009-03-041-0/+0
| | | | Signed-off-by: Eric Blake <ebb9@byu.net>
* autoupdateKarl Berry2009-03-041-9/+39
|
* announce-gen: new option: --no-print-checksumsJim Meyering2009-03-021-6/+8
| | | | | | * build-aux/announce-gen (usage): Describe it. (print_checksums): Print a newline here, not in the [*] footnote. (main): Honor it.
* Fix unportable awk script in vc-list-files.Ralf Wildenhues2009-03-011-3/+3
| | | | | | | | * build-aux/vc-list-files: In the replacement awk script, use substr with a second argument of 1, not zero. Report by Simon Josefsson. Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
* Update from last gettext release.Bruno Haible2009-02-281-8/+34
|
* autoupdateKarl Berry2009-02-042-3/+12
|
* autoupdateKarl Berry2009-01-301-2/+5
|
* useless-if-before-free: correctionJim Meyering2009-01-281-5/+3
| | | | | It does *not* recognize "if (p != (void*)0) free(p);", since the RHS in this example may not contain ")"
* useless-if-before-free: recognize more variantsJim Meyering2009-01-281-10/+30
| | | | | * build-aux/useless-if-before-free: Also recognize e.g., if (NULL != p) free (p);
* update from texinfoKarl Berry2009-01-201-5/+23
|
* Support for stripping executables in --enable-relocatable.Bruno Haible2009-01-171-8/+21
|
* Oops, fix unintended commit.Bruno Haible2009-01-171-3/+0
|
* Remove debugging information left over by C compiler on MacOS X.Bruno Haible2009-01-171-1/+7
|
* update from texinfoKarl Berry2009-01-111-2/+2
|
* autoupdate (for gendocs.sh accepting --email)Karl Berry2009-01-021-2/+2
|
* autoupdate (for gendocs.sh accepting --email)Karl Berry2009-01-021-22/+32
|
* update from texinfoKarl Berry2009-01-011-7/+35
|
* autoupdateKarl Berry2008-12-221-2/+2
|
* gitlog-to-changelog: pass all command-line arguments to git-logWilliam Pursell2008-12-211-7/+7
| | | | | | | | | | | | | | When producing a ChangeLog, it is sometimes convenient to filter the commits in various ways. gitlog-to-changelog only allows --since to specify a start date, but git-log itself supports many other filtering mechanisms. At the moment, I want to filter by branch name. Rather than adding a --branch option to gitlog-to-changelog, it seems more flexible to simply pass all options directly to git-log and let git do the work. Notice that this effectively makes --since a redundant option for gitlog-to-changelog, but removing it would require current usage to change since calls would then require an additional '--'.
* autoupdateKarl Berry2008-12-191-1/+11
|
* autoupdateKarl Berry2008-12-181-5/+3
|
* update from texinfoKarl Berry2008-12-171-1/+25
|
* update from texinfoKarl Berry2008-12-161-1/+6
|
* update from texinfoKarl Berry2008-12-151-2/+5
|
* autoupdateKarl Berry2008-12-141-2/+5
|
* autoupdateKarl Berry2008-12-112-7/+11
|
* announce-gen (get_tool_versions): Accept .xz tarballs.Jim Meyering2008-12-081-3/+5
|
* update from texinfoKarl Berry2008-12-031-10/+2
|
* * build-aux/missing: Restore executable bit.Eric Blake2008-12-011-0/+0
| | | | Signed-off-by: Eric Blake <ebb9@byu.net>
* update from texinfoKarl Berry2008-11-271-179/+194
|
* update from texinfoKarl Berry2008-11-251-2/+11
|