Create symlink from ~/.bash_profile for login shell to activate my ~/.bashrc. default tip
authorOleksandr Gavenko <gavenkoa@gmail.com>
Mon, 01 Jan 2024 20:53:49 +0200
changeset 1039 78cdb4a057e3
parent 1038 79c56b8fb8e0
Create symlink from ~/.bash_profile for login shell to activate my ~/.bashrc.
Makefile
--- a/Makefile	Sat Dec 16 18:07:34 2023 +0200
+++ b/Makefile	Mon Jan 01 20:53:49 2024 +0200
@@ -121,12 +121,14 @@
 .ONESHELL:
 install-mini:
 	$(INSTALL_DATA) -t $(HOME) ${TARBALL_MINI_DEPS}
+	ln -s -f $(HOME)/.bashrc $(HOME)/.bash_profile
 
 # Without personal info.
 .PHONY: install-micro
 .ONESHELL:
 install-micro:
 	$(INSTALL_DATA) -t $(HOME) ${TARBALL_MICRO_DEPS}
+	ln -s -f $(HOME)/.bashrc $(HOME)/.bash_profile
 
 .PHONY: install
 .ONESHELL: