Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] svn commit: trunk/buildroot/package/games/prboom
@ 2008-11-05 13:33 egtvedt at uclibc.org
  0 siblings, 0 replies; 4+ messages in thread
From: egtvedt at uclibc.org @ 2008-11-05 13:33 UTC (permalink / raw)
  To: buildroot

Author: egtvedt
Date: 2008-11-05 05:33:43 -0800 (Wed, 05 Nov 2008)
New Revision: 23939

Log:
prboom: add a touch $@ to end of install target rule to install PrBoom only once

Signed-off-by: Julien Boibessot <julien.boibessot@armadeus.com>
Signed-off-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>



Modified:
   trunk/buildroot/package/games/prboom/prboom.mk


Changeset:
Modified: trunk/buildroot/package/games/prboom/prboom.mk
===================================================================
--- trunk/buildroot/package/games/prboom/prboom.mk	2008-11-05 13:20:58 UTC (rev 23938)
+++ trunk/buildroot/package/games/prboom/prboom.mk	2008-11-05 13:33:43 UTC (rev 23939)
@@ -42,6 +42,7 @@
 	$(INSTALL) -D $(PRBOOM_DIR)/data/prboom.wad $(TARGET_DIR)/usr/share/games/doom/prboom.wad
 	$(STRIPCMD) $(STRIP_STRIP_UNNEEDED) $(TARGET_DIR)/usr/games/prboom
 	$(STRIPCMD) $(STRIP_STRIP_UNNEEDED) $(TARGET_DIR)/usr/games/prboom-game-server
+	touch $@
 
 $(PRBOOM_TARGET_CLEAN):
 	rm -rf $(TARGET_DIR)/usr/share/games/doom/prboom.wad

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/package/games/prboom
@ 2008-11-05 15:47 jacmet at uclibc.org
  2008-11-05 17:26 ` Thomas Petazzoni
  0 siblings, 1 reply; 4+ messages in thread
From: jacmet at uclibc.org @ 2008-11-05 15:47 UTC (permalink / raw)
  To: buildroot

Author: jacmet
Date: 2008-11-05 07:47:09 -0800 (Wed, 05 Nov 2008)
New Revision: 23940

Log:
prboom: misc cleanups

As noted by Bernhard on irc.

Modified:
   trunk/buildroot/package/games/prboom/prboom.mk


Changeset:
Modified: trunk/buildroot/package/games/prboom/prboom.mk
===================================================================
--- trunk/buildroot/package/games/prboom/prboom.mk	2008-11-05 13:33:43 UTC (rev 23939)
+++ trunk/buildroot/package/games/prboom/prboom.mk	2008-11-05 15:47:09 UTC (rev 23940)
@@ -40,12 +40,12 @@
 	$(INSTALL) -D $(PRBOOM_DIR)/src/prboom $(TARGET_DIR)/usr/games/prboom
 	$(INSTALL) -D $(PRBOOM_DIR)/src/prboom-game-server $(TARGET_DIR)/usr/games/prboom-game-server
 	$(INSTALL) -D $(PRBOOM_DIR)/data/prboom.wad $(TARGET_DIR)/usr/share/games/doom/prboom.wad
-	$(STRIPCMD) $(STRIP_STRIP_UNNEEDED) $(TARGET_DIR)/usr/games/prboom
-	$(STRIPCMD) $(STRIP_STRIP_UNNEEDED) $(TARGET_DIR)/usr/games/prboom-game-server
+	$(STRIPCMD) $(STRIP_STRIP_ALL) $(TARGET_DIR)/usr/games/prboom
+	$(STRIPCMD) $(STRIP_STRIP_ALL) $(TARGET_DIR)/usr/games/prboom-game-server
 	touch $@
 
 $(PRBOOM_TARGET_CLEAN):
-	rm -rf $(TARGET_DIR)/usr/share/games/doom/prboom.wad
-	rm -rf $(TARGET_DIR)/usr/games/prboom-game-server
-	rm -rf $(TARGET_DIR)/usr/games/prboom
+	rm -rf $(TARGET_DIR)/usr/share/games/doom/prboom.wad \
+		$(TARGET_DIR)/usr/games/prboom-game-server \
+		$(TARGET_DIR)/usr/games/prboom
 	-$(MAKE) -C $(PRBOOM_DIR) clean

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/package/games/prboom
  2008-11-05 15:47 jacmet at uclibc.org
@ 2008-11-05 17:26 ` Thomas Petazzoni
  2008-11-06 15:58   ` Peter Korsgaard
  0 siblings, 1 reply; 4+ messages in thread
From: Thomas Petazzoni @ 2008-11-05 17:26 UTC (permalink / raw)
  To: buildroot

Le Wed,  5 Nov 2008 07:47:10 -0800 (PST),
jacmet at uclibc.org a ?crit :

> As noted by Bernhard on irc.

What's the IRC channel for Buildroot-related discussions ? The topic on
#uclibc says that questions about Buildroot should be asked on another
channel, not Buildroot-specific.

Thanks,

Thomas
-- 
Thomas Petazzoni, Free Electrons
Kernel, drivers and embedded Linux development,
consulting, training and support.
http://free-electrons.com

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/package/games/prboom
  2008-11-05 17:26 ` Thomas Petazzoni
@ 2008-11-06 15:58   ` Peter Korsgaard
  0 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2008-11-06 15:58 UTC (permalink / raw)
  To: buildroot

>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:

 Thomas> Le Wed,  5 Nov 2008 07:47:10 -0800 (PST),
 Thomas> jacmet at uclibc.org a ?crit :

 >> As noted by Bernhard on irc.

 Thomas> What's the IRC channel for Buildroot-related discussions ? The topic on
 Thomas> #uclibc says that questions about Buildroot should be asked on another
 Thomas> channel, not Buildroot-specific.

Yeah, but I think you can pretty much safely ignore that, plenty of
people do ;)

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2008-11-06 15:58 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-11-05 13:33 [Buildroot] svn commit: trunk/buildroot/package/games/prboom egtvedt at uclibc.org
  -- strict thread matches above, loose matches on Subject: below --
2008-11-05 15:47 jacmet at uclibc.org
2008-11-05 17:26 ` Thomas Petazzoni
2008-11-06 15:58   ` Peter Korsgaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox