summaryrefslogtreecommitdiffstats
path: root/zarb-ml/mageia-dev/2013-March/023517.html
diff options
context:
space:
mode:
Diffstat (limited to 'zarb-ml/mageia-dev/2013-March/023517.html')
-rw-r--r--zarb-ml/mageia-dev/2013-March/023517.html118
1 files changed, 118 insertions, 0 deletions
diff --git a/zarb-ml/mageia-dev/2013-March/023517.html b/zarb-ml/mageia-dev/2013-March/023517.html
new file mode 100644
index 000000000..ee233a079
--- /dev/null
+++ b/zarb-ml/mageia-dev/2013-March/023517.html
@@ -0,0 +1,118 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-dev] [soft-commits] [7542] - fix loading modules with &quot;-&quot; in their names (mga#9242)
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-dev%40mageia.org?Subject=Re%3A%20%5BMageia-dev%5D%20%5Bsoft-commits%5D%20%5B7542%5D%20-%20fix%20loading%20modules%20with%0A%20%22-%22%20in%20their%20names%20%28mga%239242%29&In-Reply-To=%3CCAONrEtYZ9pPR5PYnmoeEg6f7q0N_NGeBnt0qvM2hYGYbA_U54g%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="023516.html">
+ <LINK REL="Next" HREF="023520.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-dev] [soft-commits] [7542] - fix loading modules with &quot;-&quot; in their names (mga#9242)</H1>
+ <B>Thierry Vignaud</B>
+ <A HREF="mailto:mageia-dev%40mageia.org?Subject=Re%3A%20%5BMageia-dev%5D%20%5Bsoft-commits%5D%20%5B7542%5D%20-%20fix%20loading%20modules%20with%0A%20%22-%22%20in%20their%20names%20%28mga%239242%29&In-Reply-To=%3CCAONrEtYZ9pPR5PYnmoeEg6f7q0N_NGeBnt0qvM2hYGYbA_U54g%40mail.gmail.com%3E"
+ TITLE="[Mageia-dev] [soft-commits] [7542] - fix loading modules with &quot;-&quot; in their names (mga#9242)">thierry.vignaud at gmail.com
+ </A><BR>
+ <I>Thu Mar 14 19:47:36 CET 2013</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="023516.html">[Mageia-dev] Freeze push: timezone
+</A></li>
+ <LI>Next message: <A HREF="023520.html">[Mageia-dev] [soft-commits] [7542] - fix loading modules with &quot;-&quot; in their names (mga#9242)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#23517">[ date ]</a>
+ <a href="thread.html#23517">[ thread ]</a>
+ <a href="subject.html#23517">[ subject ]</a>
+ <a href="author.html#23517">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On 13 March 2013 20:52, &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-dev">root at mageia.org</A>&gt; wrote:
+&gt;<i> Revision 7542 Author alien Date 2013-03-13 20:52:07 +0100 (Wed, 13 Mar 2013)
+</I>&gt;<i>
+</I>&gt;<i> Log Message
+</I>&gt;<i>
+</I>&gt;<i> - fix loading modules with &quot;-&quot; in their names (mga#9242)
+</I>&gt;<i> - add an easy buildtarget for testing
+</I>
+A couple remarks:
+- next time do a commit a time (first your change, then bumping version)
+- please revert your dist-svn-test;
+ when one wants to test, either he commits in git-svn or he locally runs &quot;make&quot;
+
+I hope you tested several modules with both case?
+
+&gt;<i> Modified Paths
+</I>&gt;<i>
+</I>&gt;<i> drakx/trunk/mdk-stage1/Makefile
+</I>&gt;<i> drakx/trunk/mdk-stage1/NEWS
+</I>&gt;<i> drakx/trunk/mdk-stage1/modules.c
+</I>&gt;<i>
+</I>&gt;<i> Modified: drakx/trunk/mdk-stage1/Makefile
+</I>&gt;<i> ===================================================================
+</I>&gt;<i> --- drakx/trunk/mdk-stage1/Makefile 2013-03-12 19:12:12 UTC (rev 7541)
+</I>&gt;<i> +++ drakx/trunk/mdk-stage1/Makefile 2013-03-13 19:52:07 UTC (rev 7542)
+</I>&gt;<i> @@ -15,7 +15,7 @@
+</I>&gt;<i> # along with this program; if not, write to the Free Software
+</I>&gt;<i> # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+</I>&gt;<i>
+</I>&gt;<i> -VERSION=1.74.1
+</I>&gt;<i> +VERSION=1.75
+</I>&gt;<i> PRODUCT=drakx-installer-binaries
+</I>&gt;<i>
+</I>&gt;<i> #
+</I>&gt;<i> @@ -217,6 +217,14 @@
+</I>&gt;<i> fi;
+</I>&gt;<i> $(info $(PRODUCT)-$(VERSION).tar.xz is ready)
+</I>&gt;<i>
+</I>&gt;<i> +dist-svn-test:
+</I>&gt;<i> + mkdir -p $(PRODUCT)-$(VERSION)
+</I>&gt;<i> + svn export -q . $(PRODUCT)-$(VERSION)/mdk-stage1
+</I>&gt;<i> + svn export -q ../kernel $(PRODUCT)-$(VERSION)/kernel
+</I>&gt;<i> + cp ../Makefile.config $(PRODUCT)-$(VERSION)/
+</I>&gt;<i> + tar cfa $(PRODUCT)-$(VERSION).tar.xz $(PRODUCT)-$(VERSION)
+</I>&gt;<i> + rm -rf $(PRODUCT)-$(VERSION)
+</I>&gt;<i> +
+</I>&gt;<i> dist-svn:
+</I>&gt;<i> mkdir -p $(PRODUCT)-$(VERSION)
+</I>&gt;<i> svn export -q -rBASE . $(PRODUCT)-$(VERSION)/mdk-stage1
+</I></PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="023516.html">[Mageia-dev] Freeze push: timezone
+</A></li>
+ <LI>Next message: <A HREF="023520.html">[Mageia-dev] [soft-commits] [7542] - fix loading modules with &quot;-&quot; in their names (mga#9242)
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#23517">[ date ]</a>
+ <a href="thread.html#23517">[ thread ]</a>
+ <a href="subject.html#23517">[ subject ]</a>
+ <a href="author.html#23517">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-dev">More information about the Mageia-dev
+mailing list</a><br>
+</body></html>