Files
@ 7e68cdb23c8c
Branch filter:
Location: ohnobinki_overlay/media-plugins/live/files/live-2009.09.28-buildorder.patch - annotation
7e68cdb23c8c
1.0 KiB
text/x-diff
media-tv/ivtv-utils: Initial import from Gentoo's Portage
f40ae7352506 f40ae7352506 f40ae7352506 f40ae7352506 f40ae7352506 f40ae7352506 f40ae7352506 f40ae7352506 f40ae7352506 f40ae7352506 f40ae7352506 f40ae7352506 f40ae7352506 f40ae7352506 f40ae7352506 f40ae7352506 f40ae7352506 f40ae7352506 f40ae7352506 f40ae7352506 f40ae7352506 f40ae7352506 f40ae7352506 f40ae7352506 f40ae7352506 f40ae7352506 f40ae7352506 | Author: Nathan Phillip Brink <ohnobinki@ohnopublishing.net>
Purpose: to help facilitate building liveMedia with libtool by making sure that the libtool archive files different targets need already exist before telling libtool to link against then. (i.e., to fix the build order).
diff -r 7f99bfe34df0 Makefile.tail
--- a/Makefile.tail Sat Mar 13 02:18:02 2010 -0500
+++ b/Makefile.tail Sat Mar 13 02:19:05 2010 -0500
@@ -10,17 +10,17 @@
MEDIA_SERVER_DIR = mediaServer
all:
- cd $(LIVEMEDIA_DIR) ; $(MAKE)
- cd $(GROUPSOCK_DIR) ; $(MAKE)
cd $(USAGE_ENVIRONMENT_DIR) ; $(MAKE)
cd $(BASIC_USAGE_ENVIRONMENT_DIR) ; $(MAKE)
+ cd $(GROUPSOCK_DIR) ; $(MAKE)
+ cd $(LIVEMEDIA_DIR) ; $(MAKE)
cd $(TESTPROGS_DIR) ; $(MAKE)
cd $(MEDIA_SERVER_DIR) ; $(MAKE)
clean:
- cd $(LIVEMEDIA_DIR) ; $(MAKE) clean
cd $(GROUPSOCK_DIR) ; $(MAKE) clean
cd $(USAGE_ENVIRONMENT_DIR) ; $(MAKE) clean
cd $(BASIC_USAGE_ENVIRONMENT_DIR) ; $(MAKE) clean
+ cd $(LIVEMEDIA_DIR) ; $(MAKE) clean
cd $(TESTPROGS_DIR) ; $(MAKE) clean
cd $(MEDIA_SERVER_DIR) ; $(MAKE) clean
|