
--bindir=DIR 옵션은 GNU Build System(GNU Autotools)에서 사용하는 옵션입니다. 이 옵션은 binary 파일을 설치할 디렉토리를 지정하는 역할을 합니다.
예를 들어, bash shell scripting에서 --bindir=DIR 옵션을 사용하는 경우, bash shell binary 파일이 지정된 디렉토리(DIR)에 설치됩니다.
예를 들어, bash shell scripting에서 다음 명령어를 실행한다면, bash shell binary 파일이 /usr/local/bin 디렉토리에 설치됩니다.
./configure --prefix=/usr/local --bindir=/usr/local/bin
이러한 옵션은 GNU Autotools를 사용하는 프로젝트에서 binary 파일을 설치할 디렉토리를 지정할 때 사용됩니다.
2025-08-06 08:34