[vlc-commits] contrib: qt4: fix header install

Rafaël Carré git at videolan.org
Fri Nov 11 03:35:38 CET 2011


vlc | branch: master | Rafaël Carré <funman at videolan.org> | Thu Nov 10 21:35:21 2011 -0500| [5dfa2b94f639524e2c67c554b88189ea9220c44e] | committer: Rafaël Carré

contrib: qt4: fix header install

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=5dfa2b94f639524e2c67c554b88189ea9220c44e
---

 contrib/src/qt4/rules.mak |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/contrib/src/qt4/rules.mak b/contrib/src/qt4/rules.mak
index 79f3fa5..c4fb073 100644
--- a/contrib/src/qt4/rules.mak
+++ b/contrib/src/qt4/rules.mak
@@ -47,10 +47,10 @@ endif
 	install -D -- $</plugins/accessible/libqtaccessiblewidgets.a "$(PREFIX)/lib/libqtaccessiblewidgets.a"
 	# INSTALLING HEADERS
 	for h in corelib gui xml network; \
-		do find . -type f -name '*.h' -exec install -D -- "{}" "$(PREFIX)/include/qt4/src/$${h}/{}" \; ; \
+		do (cd $</src/$${h} && find . -type f -name '*.h' -exec install -D -- "{}" "$(PREFIX)/include/qt4/src/$${h}/{}" \;) ; \
 	done
 	for h in Core Gui Xml Network; \
-		do cd $</include/Qt$${h}; find . -maxdepth 1 -type f \( -name '*.h' -o -name 'Q*' \) -exec install -D -s --strip-program="$(abspath $(SRC)/qt4/fix_header.sh)" -- "{}" "$(PREFIX)/include/qt4/Qt$${h}/{}" \; ; \
+		do (cd $</include/Qt$${h} && find . -maxdepth 1 -type f \( -name '*.h' -o -name 'Q*' \) -exec install -D -s --strip-program="$(abspath $(SRC)/qt4/fix_header.sh)" -- "{}" "$(PREFIX)/include/qt4/Qt$${h}/{}" \;) ; \
 	done
 	# INSTALLING PKGCONFIG FILES
 	install -d "$(PREFIX)/lib/pkgconfig"



More information about the vlc-commits mailing list