From 98f3e45a8151b70c2cf861992bb55dbb45b5ed88 Mon Sep 17 00:00:00 2001 From: Yun Liu <yun@yun.(none)> Date: Fri, 5 Dec 2008 13:21:53 -0500 Subject: [PATCH] Modify pjproject Makefile in order to tolerant both 32bit and 64bit system --- libs/pjproject-1.0/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/pjproject-1.0/Makefile b/libs/pjproject-1.0/Makefile index 6bb1760525..58a1627463 100644 --- a/libs/pjproject-1.0/Makefile +++ b/libs/pjproject-1.0/Makefile @@ -74,7 +74,7 @@ install: mkdir -p $(DESTDIR)$(prefix)/lib cp -L $$(find . -name '*.a') $(DESTDIR)$(prefix)/lib cp -RL $$(find ./pjnath ./pjsip ./pjmedia ./pjlib ./pjlib-util ./pjsip-apps -name include) $(DESTDIR)$(prefix) - cd $(DESTDIR)$(prefix)/lib; for i in $$(find . -name 'libpj*a'); do\ + cd $(DESTDIR)$(prefix)/lib; for i in $$(find . -name 'libpj*x86_64*a' -or -name 'libpj*686*a'); do\ ln -s $$i $$(echo $$i | sed -e "s/-$(TARGET_NAME)//");\ done mkdir -p $(DESTDIR)$(prefix)/lib/pkgconfig -- GitLab