This is an automated email from the git hooks/post-receive script. arand-guest pushed a commit to branch debdir in repository redeclipse.
commit f2fc1cd09a37238394c63b464de1d8158ca11a6a Author: Arand Nash <[email protected]> Date: Mon Feb 21 15:20:38 2011 +0000 mkdir -p instead --- patches/01_makefile.patch | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/patches/01_makefile.patch b/patches/01_makefile.patch index 7d416d0..8e713b2 100644 --- a/patches/01_makefile.patch +++ b/patches/01_makefile.patch @@ -1,15 +1,17 @@ --- a/src/Makefile +++ b/src/Makefile -@@ -170,10 +170,10 @@ +@@ -170,10 +170,12 @@ endif install-client: client - cp reclient ../bin/reclient$(PLATFORM_SUFFIX) -+ cp --parent reclient $(DESTDIR)/usr/bin/reclient$(PLATFORM_SUFFIX) ++ mkdir -p $(DESTDIR)/usr/bin/ ++ cp reclient $(DESTDIR)/usr/bin/reclient$(PLATFORM_SUFFIX) install-server: server - cp reserver ../bin/reserver$(PLATFORM_SUFFIX) -+ cp --parent reserver $(DESTDIR)/usr/bin/reserver$(PLATFORM_SUFFIX) ++ mkdir -p $(DESTDIR)/usr/bin/ ++ cp reserver $(DESTDIR)/usr/bin/reserver$(PLATFORM_SUFFIX) endif install: install-client install-server -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-games/redeclipse.git _______________________________________________ Pkg-games-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits

