diff options
author | David Cantrell <dcantrell@redhat.com> | 2008-09-20 16:56:23 -1000 |
---|---|---|
committer | David Cantrell <dcantrell@redhat.com> | 2008-09-20 16:56:23 -1000 |
commit | eae2c7d79d26273a7d37555073d39a19455e581d (patch) | |
tree | 551bc5f59c6800c05be2f18cbc5d99b741eacb82 /Makefile | |
parent | cd4fb1963fe827f05c4f19e0fc829762bc353f12 (diff) | |
download | anaconda-eae2c7d79d26273a7d37555073d39a19455e581d.tar.gz anaconda-eae2c7d79d26273a7d37555073d39a19455e581d.tar.xz anaconda-eae2c7d79d26273a7d37555073d39a19455e581d.zip |
Change 'git-' in git commands to 'git '.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -106,7 +106,7 @@ tag: @echo "Tagged as anaconda-$(VERSION)-$(RELEASE)" ChangeLog: - (GIT_DIR=.git git-log > .changelog.tmp && mv .changelog.tmp ChangeLog; rm -f .changelog.tmp) || (touch ChangeLog; echo 'git directory not found: installing possibly empty changelog.' >&2) + (GIT_DIR=.git git log > .changelog.tmp && mv .changelog.tmp ChangeLog; rm -f .changelog.tmp) || (touch ChangeLog; echo 'git directory not found: installing possibly empty changelog.' >&2) archive: tag @rm -f ChangeLog docs/kickstart-docs.txt docs/command-line.txt @@ -134,13 +134,13 @@ api: doxygen docs/api.cfg rpmlog: - @git-log --pretty="format:- %s (%ae)" anaconda-$(VERSION)-$(RELEASE).. |sed -e 's/@.*)/)/' + @git log --pretty="format:- %s (%ae)" anaconda-$(VERSION)-$(RELEASE).. |sed -e 's/@.*)/)/' @echo bumpver: @NEWSUBVER=$$((`echo $(VERSION) |cut -d . -f 4` + 1)) ; \ NEWVERSION=`echo $(VERSION).$$NEWSUBVER |cut -d . -f 1-3,5` ; \ - DATELINE="* `date "+%a %b %d %Y"` `git-config user.name` <`git-config user.email`> - $$NEWVERSION-1" ; \ + DATELINE="* `date "+%a %b %d %Y"` `git config user.name` <`git config user.email`> - $$NEWVERSION-1" ; \ cl=`grep -n %changelog anaconda.spec |cut -d : -f 1` ; \ tail --lines=+$$(($$cl + 1)) anaconda.spec > speclog ; \ make --quiet rpmlog 2>/dev/null | fold -s -w 77 | while read line ; do \ |