comments
This commit is contained in:
parent
3578117687
commit
08b490783b
6
Makefile
6
Makefile
@ -67,11 +67,13 @@ i18n: yarn-install
|
|||||||
# generate .ts file containing all translations
|
# generate .ts file containing all translations
|
||||||
$(gulp) po2js
|
$(gulp) po2js
|
||||||
|
|
||||||
|
# Some commands are only available when ./configure has been run
|
||||||
|
|
||||||
ifndef prefix
|
ifndef prefix
|
||||||
.PHONY: install
|
.PHONY: warn-noprefix install
|
||||||
install:
|
warn-noprefix:
|
||||||
@echo "no prefix configured, did you run ./configure?"
|
@echo "no prefix configured, did you run ./configure?"
|
||||||
|
install: warn-noprefix
|
||||||
else
|
else
|
||||||
.PHONY: install
|
.PHONY: install
|
||||||
install: tsc
|
install: tsc
|
||||||
|
5
configure
vendored
5
configure
vendored
@ -57,7 +57,10 @@ while true; do
|
|||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|
||||||
echo "prefix=$prefix" >config.mk
|
cat << EOF > config.mk
|
||||||
|
# this file is autogenerated by ./configure
|
||||||
|
prefix=$prefix
|
||||||
|
EOF
|
||||||
|
|
||||||
node_version=$(node --version)
|
node_version=$(node --version)
|
||||||
if [ ! "$?" -eq 0 ]; then
|
if [ ! "$?" -eq 0 ]; then
|
||||||
|
Loading…
Reference in New Issue
Block a user