diff options
author | Nicolas Thill <nico@openwrt.org> | 2005-12-07 17:03:23 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2005-12-07 17:03:23 +0000 |
commit | af16f874ec82ccad9c0752981217e770712c0e0c (patch) | |
tree | 890fa55f2d4f4533a4d105b5308e45042613bfbc /package/udev/patches | |
parent | ccf597027f3264ba877047c8952878cb3b5955c5 (diff) | |
download | upstream-af16f874ec82ccad9c0752981217e770712c0e0c.tar.gz upstream-af16f874ec82ccad9c0752981217e770712c0e0c.tar.bz2 upstream-af16f874ec82ccad9c0752981217e770712c0e0c.zip |
add udev package
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2596 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/udev/patches')
-rw-r--r-- | package/udev/patches/01-no_debug.patch | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/package/udev/patches/01-no_debug.patch b/package/udev/patches/01-no_debug.patch new file mode 100644 index 0000000000..dcbc1051a9 --- /dev/null +++ b/package/udev/patches/01-no_debug.patch @@ -0,0 +1,21 @@ +diff -ruN udev-077-old/Makefile udev-077-new/Makefile +--- udev-077-old/Makefile 2005-12-04 03:01:48.000000000 +0100 ++++ udev-077-new/Makefile 2005-12-07 16:48:11.000000000 +0100 +@@ -136,7 +136,7 @@ + # check if compiler option is supported + cc-supports = ${shell if $(CC) ${1} -S -o /dev/null -xc /dev/null > /dev/null 2>&1; then echo "$(1)"; else echo "$(2)"; fi;} + +-CFLAGS = -g -Wall -pipe -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 ++CFLAGS = -Wall -pipe -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 + WARNINGS = -Wstrict-prototypes -Wsign-compare -Wshadow \ + -Wchar-subscripts -Wmissing-declarations -Wnested-externs \ + -Wpointer-arith -Wcast-align -Wsign-compare -Wmissing-prototypes +@@ -159,7 +159,7 @@ + + # if DEBUG is enabled, then we do not strip + ifeq ($(strip $(DEBUG)),true) +- CFLAGS += -DDEBUG ++ CFLAGS += -g -DDEBUG + STRIPCMD = + endif + |