가장 간편(?)한 건...

$ sudo ln -s /bin/bash /bin/sh 


그런데 이렇게 건드리는게 옳은건가...


[링크 : https://forums.xilinx.com/.../Trouble-configuring-petalinux-2013-10-bin-sh-1-pushd-not-found/td-p/399843]

'프로그램 사용 > make, configure' 카테고리의 다른 글

cmake 빌드 에러시  (0) 2021.01.19
make order  (0) 2016.06.16
make 기본셸  (0) 2016.06.08
makefile := = 차이점  (0) 2016.06.04
make 의존성 파일?  (0) 2015.12.18
Posted by 구차니

SHELL 변수로 설정되지 않으면 /bin/sh가 되므로

bash에서 지원하는 popd pushd 등이 봉인..

환경 변수 등을 끌어 가지 않으므로.. 결론은 Makefile 별로 설정을 해주어야 한다.



5.3.2 Choosing the Shell

The program used as the shell is taken from the variable SHELL. If this variable is not set in your makefile, the program /bin/sh is used as the shell. The argument(s) passed to the shell are taken from the variable .SHELLFLAGS. The default value of .SHELLFLAGS is -c normally, or -ec in POSIX-conforming mode.

Unlike most variables, the variable SHELL is never set from the environment. This is because the SHELL environment variable is used to specify your personal choice of shell program for interactive use. It would be very bad for personal choices like this to affect the functioning of makefiles. See Variables from the Environment.

Furthermore, when you do set SHELL in your makefile that value is not exported in the environment to recipe lines that make invokes. Instead, the value inherited from the user’s environment, if any, is exported. You can override this behavior by explicitly exporting SHELL (see Communicating Variables to a Sub-make), forcing it to be passed in the environment to recipe lines.

[링크 : https://www.gnu.org/software/make/manual/html_node/Choosing-the-Shell.html]

    [링크 : https://www.gnu.org/software/make/manual/html_node/Variables_002fRecursion.html]

'프로그램 사용 > make, configure' 카테고리의 다른 글

make order  (0) 2016.06.16
make /bin/sh: 1: pushd: not found 에러  (0) 2016.06.08
makefile := = 차이점  (0) 2016.06.04
make 의존성 파일?  (0) 2015.12.18
make 암시적 룰  (0) 2015.12.18
Posted by 구차니

퇴근길 버스안에서 잠실대교



'개소리 왈왈 > 사진과 수다' 카테고리의 다른 글

보름달  (0) 2016.07.19
블루베리.. 그리고 우담바라?  (0) 2016.06.11
퇴근길 + 출근길 비  (0) 2016.05.24
점심 시간의 여유  (0) 2016.05.23
걍 밤에는 포기하자.jpg  (0) 2016.05.22
Posted by 구차니
게임/c&c generals2016. 6. 5. 22:28

망할 스커드 폭풍 ㅠㅠ

공략을 봐도 겁나 빡신(유난히!) 미션이라고...


포인트는.. overlord에 프로파간다 스피커를 달아 광역힐러로 쓰는거 ㅋㅋ










개틀링 캐논.. 대공 방어라는데..

이거 한다고 해서 스커드 미사일이 안떨어 지는건 또 아닌거 같기도 하고.. 애매하네


퍼킹 스커드!!!!

왜 미국 애들이 CNN에서 스커드 어쩌구 하면서 북한 갈구는지 이해가 될 기분 ㅠㅠ


흑수선 가지고 내걸로 만들걸 그랬나...



아무튼 겨우 스커드 기지만 폭발시키고 조금은 편안하게.. 진행 ㅠㅠ

그랬더니 이동형 스커드 망할 ㅠㅠ


갑자기 환호하는 아랍인?



꽤나 처참한 결론 ㅠㅠ


'게임 > c&c generals' 카테고리의 다른 글

c&c generals - gla 2  (0) 2016.06.15
c&c generals - gla 1  (0) 2016.06.15
c&c generals - china 6  (0) 2016.05.28
c&c generals - china 5  (0) 2016.04.23
c&c generals - china 4  (0) 2016.04.21
Posted by 구차니


 In short, variables defined with := are expanded once, but variables defined with = are expanded whenever they are used.

[링크 : http://stackoverflow.com/.../whats-the-difference-between-and-in-makefile]


Simply expanded variables are defined by lines using ‘:=’ or ‘::=’ (see Setting Variables). Both forms are equivalent in GNU make; however only the ‘::=’ form is described by the POSIX standard (support for ‘::=’ was added to the POSIX standard in 2012, so older versions of make won’t accept this form either).

[링크 : http://www.gnu.org/software/make/manual/html_node/Flavors.html#Flavors]


https://www.gnu.org/software/make/manual/html_node/Setting.html#Setting


'프로그램 사용 > make, configure' 카테고리의 다른 글

make /bin/sh: 1: pushd: not found 에러  (0) 2016.06.08
make 기본셸  (0) 2016.06.08
make 의존성 파일?  (0) 2015.12.18
make 암시적 룰  (0) 2015.12.18
make jobserver unavailable  (0) 2015.12.16
Posted by 구차니

주문 일주일 만에 도착....

라즈베리 케이스 씌우니까 이쁜데..

공간을 확 잡아 먹네 ㅠㅠ

'개소리 왈왈 > 직딩의 비애' 카테고리의 다른 글

지친다  (2) 2016.07.05
망할 놈의 회사  (0) 2016.06.30
시놀로지.. freeNAS... 우분투...  (0) 2016.06.01
어떤 아주머니  (0) 2016.05.29
소소한 부품 지름..  (2) 2016.05.27
Posted by 구차니

80기가로 늘리기


C:\Program Files\Oracle\VirtualBox\VBoxManage.exe modifyhd image.vdi --resize 81920


[링크 : http://www.howtogeek.com/.../how-to-enlarge-a-virtual-machines-disk-in-virtualbox-or-vmware/]


+ 2020.09.11

고정일경우 에러가 나서 되지 않으니

clonehd를 이용해서 동적으로 복사한후 늘리면 된다.


[링크 : https://m.blog.naver.com/r2adne/220239005520]

[링크 : https://stackoverflow.com/questions/50772789/]

Posted by 구차니

기분인진 모르겠으나, 게스트 확장 깔고 나서

ls 만 실행해도 상당히 느리게 반응하는 느낌이라.

그리고 창크기 변화하는게 그리 유용하진 않은지라 삭제!


/opt/VBoxGuestAdditions-5.0.20$ ll

합계 76

drwxr-xr-x 9 root root  4096  6월  2 17:26 ./

drwxr-xr-x 3 root root  4096  6월  2 17:26 ../

-rw-r--r-- 1 root root 20516  4월 28 22:22 LICENSE

drwxr-xr-x 2 root root  4096  4월 28 22:22 bin/

drwxr-xr-x 2 root root  4096  4월 28 22:22 init/

drwxr-xr-x 2 root root  4096  6월  2 17:26 installer/

drwxr-xr-x 3 root root  4096  4월 28 22:22 lib/

-rwxr-xr-x 1 root root 11319  6월  2 17:26 routines.sh*

drwxr-xr-x 2 root root  4096  4월 28 22:22 sbin/

drwxr-xr-x 3 root root  4096  4월 28 22:22 share/

drwxr-xr-x 3 root root  4096  4월 28 22:22 src/

-rwxr-xr-x 1 root root  2948  6월  2 17:26 uninstall.sh*


/opt/VBoxGuestAdditions-5.0.20$ sudo ./uninstall.sh
Removing installed version 5.0.20 of VirtualBox Guest Additions...
Removing existing VirtualBox non-DKMS kernel modules ...done.


Besides the unistall

/opt/[VboxAddonsFolder]/uninstall.sh

I also had to remove /etc/X11/xorg.conf


[링크 : https://forums.virtualbox.org/viewtopic.php?t=7839


Posted by 구차니

이유없이? 점점 방문자 수가 주는게 이런 이유였나..

그나저나 구글은 유입경로도 안나오고 갈수록 개판으로 나오던데.

이런것도 좀 손봐주지 -_-



RSS 수집 문제로 네이버 등에서 새 글 검색안돼

[링크 : http://notice.tistory.com/2327]


어뷰징 항의로 과거 일시 글 못쓰도록

[링크 : http://notice.tistory.com/2324] 5.26

'개소리 왈왈 > 블로그' 카테고리의 다른 글

이 미묘한 기분..  (0) 2016.07.20
블로그 현황  (2) 2016.06.29
5월은 가정 (재정) 파탄의 달?!?  (0) 2016.05.13
문득... 살아있을까?  (0) 2016.04.27
웹호스팅 결제 -_-  (0) 2016.02.22
Posted by 구차니

회사 소스 서버 하나 만들어야 하는데..

머가 좋으려나.. 하.....


시놀로지 사고

하드는 따로 사고 해서 금액이 적어 보이게 하기?


어렵다 어려워...

'개소리 왈왈 > 직딩의 비애' 카테고리의 다른 글

망할 놈의 회사  (0) 2016.06.30
일주일 만에 택배도착  (0) 2016.06.04
어떤 아주머니  (0) 2016.05.29
소소한 부품 지름..  (2) 2016.05.27
오늘의 지름(카메라 악세사리)  (0) 2016.05.25
Posted by 구차니