Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 419943
Collapse All | Expand All

(-)a/Makefile (-2 lines)
Lines 40-53 SCRIPT_FILES+=git-flow-release Link Here
40
SCRIPT_FILES+=git-flow-support
40
SCRIPT_FILES+=git-flow-support
41
SCRIPT_FILES+=git-flow-version
41
SCRIPT_FILES+=git-flow-version
42
SCRIPT_FILES+=gitflow-common
42
SCRIPT_FILES+=gitflow-common
43
SCRIPT_FILES+=gitflow-shFlags
44
43
45
all:
44
all:
46
	@echo "usage: make install"
45
	@echo "usage: make install"
47
	@echo "       make uninstall"
46
	@echo "       make uninstall"
48
47
49
install:
48
install:
50
	@test -f gitflow-shFlags || (echo "Run 'git submodule init && git submodule update' first." ; exit 1 )
51
	install -d -m 0755 $(prefix)/bin
49
	install -d -m 0755 $(prefix)/bin
52
	install -m 0755 $(EXEC_FILES) $(prefix)/bin
50
	install -m 0755 $(EXEC_FILES) $(prefix)/bin
53
	install -m 0644 $(SCRIPT_FILES) $(prefix)/bin
51
	install -m 0644 $(SCRIPT_FILES) $(prefix)/bin
(-)a/git-flow (-1 / +1 lines)
Lines 78-84 main() { Link Here
78
	export POSIXLY_CORRECT=1
78
	export POSIXLY_CORRECT=1
79
79
80
	# use the shFlags project to parse the command line arguments
80
	# use the shFlags project to parse the command line arguments
81
	. "$GITFLOW_DIR/gitflow-shFlags"
81
	. /usr/share/misc/shflags
82
	FLAGS_PARENT="git flow"
82
	FLAGS_PARENT="git flow"
83
	FLAGS "$@" || exit $?
83
	FLAGS "$@" || exit $?
84
	eval set -- "${FLAGS_ARGV}"
84
	eval set -- "${FLAGS_ARGV}"

Return to bug 419943