furnish git with an (empty) template directory in standalone builds
This will stop git-init complaining about missing template directory.
This commit is contained in:
parent
9b663c7f8c
commit
dd032bd84c
3 changed files with 14 additions and 2 deletions
2
Makefile
2
Makefile
|
@ -173,6 +173,7 @@ linuxstandalone:
|
|||
|
||||
install -d "$(LINUXSTANDALONE_DEST)/git-core"
|
||||
(cd "$(shell git --exec-path)" && tar c .) | (cd "$(LINUXSTANDALONE_DEST)"/git-core && tar x)
|
||||
install -d "$(LINUXSTANDALONE_DEST)/templates"
|
||||
|
||||
touch "$(LINUXSTANDALONE_DEST)/libdirs.tmp"
|
||||
for lib in $$(ldd "$(LINUXSTANDALONE_DEST)"/bin/* $$(find "$(LINUXSTANDALONE_DEST)"/git-core/ -type f) | grep -v -f standalone/linux/glibc-libs | grep -v "not a dynamic executable" | egrep '^ ' | sed 's/^\t//' | sed 's/.*=> //' | cut -d ' ' -f 1 | sort | uniq); do \
|
||||
|
@ -217,6 +218,7 @@ osxapp:
|
|||
done
|
||||
|
||||
(cd "$(shell git --exec-path)" && tar c .) | (cd "$(OSXAPP_BASE)" && tar x)
|
||||
install -d "$(LINUXSTANDALONE_DEST)/templates"
|
||||
|
||||
runghc Build/OSXMkLibs.hs $(OSXAPP_BASE)
|
||||
rm -f tmp/git-annex.dmg
|
||||
|
|
|
@ -58,8 +58,13 @@ export ORIG_GIT_EXEC_PATH
|
|||
GIT_EXEC_PATH=$base/git-core
|
||||
export GIT_EXEC_PATH
|
||||
|
||||
ORIG_GIT_TEMPLATE_DIR="$GIT_TEMPLATE_DIR"
|
||||
export ORIG_GIT_TEMPLATE_DIR
|
||||
GIT_TEMPLATE_DIR="$base/templates"
|
||||
export GIT_TEMPLATE_DIR
|
||||
|
||||
# Indicate which variables were exported above.
|
||||
GIT_ANNEX_STANDLONE_ENV="PATH LD_LIBRARY_PATH GIT_EXEC_PATH"
|
||||
GIT_ANNEX_STANDLONE_ENV="PATH LD_LIBRARY_PATH GIT_EXEC_PATH GIT_TEMPLATE_DIR"
|
||||
export GIT_ANNEX_STANDLONE_ENV
|
||||
|
||||
if [ "$1" ]; then
|
||||
|
|
|
@ -51,8 +51,13 @@ export ORIG_GIT_EXEC_PATH
|
|||
GIT_EXEC_PATH=$base
|
||||
export GIT_EXEC_PATH
|
||||
|
||||
ORIG_GIT_TEMPLATE_DIR="$GIT_TEMPLATE_DIR"
|
||||
export ORIG_GIT_TEMPLATE_DIR
|
||||
GIT_TEMPLATE_DIR="$base/templates"
|
||||
export GIT_TEMPLATE_DIR
|
||||
|
||||
# Indicate which variables were exported above.
|
||||
GIT_ANNEX_STANDLONE_ENV="PATH GIT_EXEC_PATH"
|
||||
GIT_ANNEX_STANDLONE_ENV="PATH GIT_EXEC_PATH GIT_TEMPLATE_DIR"
|
||||
export GIT_ANNEX_STANDLONE_ENV
|
||||
|
||||
if [ "$1" ]; then
|
||||
|
|
Loading…
Reference in a new issue