diff options
author | Leo Tenenbaum <pommicket@gmail.com> | 2021-01-25 19:34:30 -0500 |
---|---|---|
committer | Leo Tenenbaum <pommicket@gmail.com> | 2021-01-25 19:34:30 -0500 |
commit | 9f8e74337832533a806ac0c46ee993a927f0c057 (patch) | |
tree | bbe437b4c3c68ea5c905ad957bb4307af2031354 /Makefile | |
parent | 795262f69900af674156bed2bcd0fdb57dbbb55e (diff) |
error log, fix memory leak, moved globals to Ted
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -19,6 +19,7 @@ install: release @[ -w `dirname $(INSTALL_BIN_DIR)` ] || { echo "You need permission to write to $(INSTALL_BIN_DIR). Try running with sudo/as root." && exit 1; } mkdir -p $(GLOBAL_DATA_DIR) $(LOCAL_DATA_DIR) + chown `logname`:`logname` $(LOCAL_DATA_DIR) cp -r assets $(GLOBAL_DATA_DIR) install -m 644 ted.cfg $(GLOBAL_DATA_DIR) [ ! -e $(LOCAL_DATA_DIR)/ted.cfg ] && install -o `logname` -g `logname` -m 644 ted.cfg $(LOCAL_DATA_DIR) || : |