summaryrefslogtreecommitdiff
path: root/pjsip-apps
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2013-10-08 06:45:08 +0000
committerBenny Prijono <bennylp@teluu.com>2013-10-08 06:45:08 +0000
commit476648f068a362857304aca7b383f700a304d59e (patch)
treecbab98cba16f6d472921711a5941545e62da438a /pjsip-apps
parent8a11acc8111174c5e977233d6b38dfa73e482d2e (diff)
Misc (re #1630): fixed error in parsing ldflags for building Python module
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@4612 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjsip-apps')
-rw-r--r--pjsip-apps/src/python/helper.mak6
1 files changed, 3 insertions, 3 deletions
diff --git a/pjsip-apps/src/python/helper.mak b/pjsip-apps/src/python/helper.mak
index b4acce61..f9fdf34d 100644
--- a/pjsip-apps/src/python/helper.mak
+++ b/pjsip-apps/src/python/helper.mak
@@ -2,16 +2,16 @@ include ../../../build.mak
lib_dir:
@for token in `echo $(APP_LDFLAGS)`; do \
- echo $$token | grep L | sed 's/-L//'; \
+ echo $$token | grep '\-L' | sed 's/-L//'; \
done
inc_dir:
@for token in `echo $(APP_CFLAGS)`; do \
- echo $$token | grep I | sed 's/-I//'; \
+ echo $$token | grep '\-I' | sed 's/-I//'; \
done
libs:
@for token in `echo $(APP_LDLIBS)`; do \
- echo $$token | grep \\-l | sed 's/-l//'; \
+ echo $$token | grep '\-l' | sed 's/-l//'; \
done