Skip to content
This repository has been archived by the owner on Jan 15, 2019. It is now read-only.

Commit

Permalink
Build/find: Fix using -wholename which is less portable than -path
Browse files Browse the repository at this point in the history
Signed-off-by: Eric Lippmann <eric.lippmann@netways.de>

fixes #4955
  • Loading branch information
sthen authored and lippserd committed Nov 20, 2013
1 parent da62848 commit b4450b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/agavi/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ INSTALL=@INSTALL@
INSTALL_OPTS=@INSTALL_OPTS@

install: installdirs
@files=`find src -mindepth 1 -type f ! -name "*.in" -and ! -name "Makefile" -and ! -wholename "src/build/*"`; \
@files=`find src -mindepth 1 -type f ! -name "*.in" -and ! -name "Makefile" -and ! -path "src/build/*"`; \
for file in $$files; do \
$(INSTALL) -m 644 $(INSTALL_OPTS) "$$file" $(DESTDIR)$(prefix)/lib/agavi/"$$file"; \
done
Expand Down

0 comments on commit b4450b7

Please sign in to comment.