r2129 - in trunk

dslinux_sonny_jim at dslinux.in-berlin.de dslinux_sonny_jim at dslinux.in-berlin.de
Tue Feb 12 20:41:33 CET 2008


Author: sonny_jim
Date: 2008-02-12 20:41:33 +0100 (Tue, 12 Feb 2008)
New Revision: 2129

Log:
Add LDFLAGS, Makefile for mktemp, integrate into build system

Modified: trunk/config/Configure.help
===================================================================
--- trunk/config/Configure.help	2008-02-12 19:19:40 UTC (rev 2128)
+++ trunk/config/Configure.help	2008-02-12 19:41:33 UTC (rev 2129)
@@ -964,7 +964,10 @@
 
 CONFIG_USER_COREUTILS_COREUTILS
   GNU Coreutils v6.7
- 
+
+CONFIG_USER_MKTEMP
+  A small program to create temporary files
+
 CONFIG_USER_CPU_CPU
   cpu tool
 

Modified: trunk/config/config.in
===================================================================
--- trunk/config/config.in	2008-02-12 19:19:40 UTC (rev 2128)
+++ trunk/config/config.in	2008-02-12 19:41:33 UTC (rev 2129)
@@ -279,6 +279,8 @@
 comment 'COREUTILS'
 bool 'coreutils'		CONFIG_USER_COREUTILS_COREUTILS
 
+bool 'mktemp'			CONFIG_USER_MKTEMP
+
 endmenu
 
 #############################################################################

Modified: trunk/user/Makefile
===================================================================
--- trunk/user/Makefile	2008-02-12 19:19:40 UTC (rev 2128)
+++ trunk/user/Makefile	2008-02-12 19:41:33 UTC (rev 2129)
@@ -206,6 +206,7 @@
 dir_$(CONFIG_USER_MATHOMATIC)               += mathomatic
 dir_$(CONFIG_USER_MAWK_AWK)                 += mawk
 dir_$(CONFIG_USER_MC)                       += mc
+dir_$(CONFIG_USER_MKTEMP)                   += mktemp
 dir_$(CONFIG_USER_MPC)                      += mpc
 dir_$(CONFIG_USER_MTDUTILS)                 += mtd-utils
 dir_$(CONFIG_USER_MICROWIN)                 += microwin

Added: trunk/user/mktemp/Makefile

Copied: trunk/user/mktemp/src (from rev 2128, tags/mktemp/mktemp-1.5)

Modified: trunk/user/mktemp/src/Makefile.in
===================================================================
--- tags/mktemp/mktemp-1.5/Makefile.in	2008-02-12 19:19:40 UTC (rev 2128)
+++ trunk/user/mktemp/src/Makefile.in	2008-02-12 19:41:33 UTC (rev 2129)
@@ -98,7 +98,7 @@
 	$(CC) -c $(CPPFLAGS) $(CFLAGS) $<
 
 $(PROG): $(OBJS)
-	$(CC) -o $@ $(OBJS) $(LIBS)
+	$(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)
 
 $(OBJS): config.h
 



More information about the dslinux-commit mailing list