Skip to content

Commit f85639c

Browse files
author
Linus Torvalds
committed
Rename the RPM from "git" to "git-core"
That way we avoid any confusion with "GNU Interactive Tools", and it's more descriptive anyway (the rpm documentation talks about how git is split into a "core" part and an "SCM" part, this makes it clear that this is the core one).
1 parent 37f1a51 commit f85639c

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Makefile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -172,20 +172,20 @@ diffcore-break.o : $(LIB_H) diffcore.h
172172
diffcore-order.o : $(LIB_H) diffcore.h
173173
epoch.o: $(LIB_H)
174174

175-
git.spec: git.spec.in
175+
git-core.spec: git-core.spec.in
176176
sed -e 's/@@VERSION@@/$(GIT_VERSION)/g' < $< > $@
177177

178-
GIT_TARNAME=git-$(GIT_VERSION)
179-
dist: git.spec git-tar-tree
178+
GIT_TARNAME=git-core-$(GIT_VERSION)
179+
dist: git-core.spec git-tar-tree
180180
./git-tar-tree HEAD $(GIT_TARNAME) > $(GIT_TARNAME).tar
181181
@mkdir -p $(GIT_TARNAME)
182-
@cp git.spec $(GIT_TARNAME)
183-
tar rf $(GIT_TARNAME).tar $(GIT_TARNAME)/git.spec
182+
@cp git-core.spec $(GIT_TARNAME)
183+
tar rf $(GIT_TARNAME).tar $(GIT_TARNAME)/git-core.spec
184184
@rm -rf $(GIT_TARNAME)
185185
gzip -9 $(GIT_TARNAME).tar
186186

187187
rpm: dist
188-
rpmbuild -ta git-$(GIT_VERSION).tar.gz
188+
rpmbuild -ta git-core-$(GIT_VERSION).tar.gz
189189

190190
test: all
191191
$(MAKE) -C t/ all

git.spec.in renamed to git-core.spec.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Name: git
1+
Name: git-core
22
Version: @@VERSION@@
33
Release: 1
44
Vendor: Linus Torvalds <torvalds@osdl.org>

0 commit comments

Comments
 (0)