Use pwd command, not PWD env var

So, sometimes PWD isn't exported. Like if you're in some kind of
weird sudo login session or something.

I don't know. It was broken for me. This fixed it.
This commit is contained in:
Steven Dee 2015-03-05 20:58:57 -05:00
parent b74beae6c0
commit c4b3e47e87

View File

@ -33,7 +33,7 @@ ENDIAN=little
#
BIN=bin
LIB=$(PWD)/urb
LIB=$(shell pwd)/urb
RM=rm -f
CC=gcc