diff options
author | kay.sievers@vrfy.org <kay.sievers@vrfy.org> | 2004-10-18 22:57:41 -0700 |
---|---|---|
committer | Greg KH <gregkh@suse.de> | 2005-04-26 22:06:44 -0700 |
commit | ff694eca172deb298e806246f6e88bc66235534a (patch) | |
tree | 475aa7aee75d2c5d01cb4b8da7e6d471b459b496 /extras/volume_id/Makefile | |
parent | 3b2382de5192057d4c3ac25ddce9c70348d756f9 (diff) |
[PATCH] fix debug in volume id / fix clashing global var name
Here we get the logging for udev_volume_id working if it is compiled
with DEBUG=true. Also fixed is a name clash with a global variable.
Diffstat (limited to 'extras/volume_id/Makefile')
-rw-r--r-- | extras/volume_id/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/extras/volume_id/Makefile b/extras/volume_id/Makefile index d0c6e40fa3..c419e8860f 100644 --- a/extras/volume_id/Makefile +++ b/extras/volume_id/Makefile @@ -28,9 +28,8 @@ INSTALL_PROGRAM = ${INSTALL} INSTALL_DATA = ${INSTALL} -m 644 INSTALL_SCRIPT = ${INSTALL_PROGRAM} -override CFLAGS+=-Wall -fno-builtin -Wchar-subscripts -Wmissing-declarations \ - -Wnested-externs -Wpointer-arith -Wcast-align \ - -Wsign-compare +override CFLAGS+=-Wall -fno-builtin -Wchar-subscripts \ + -Wpointer-arith -Wcast-align -Wsign-compare override CFLAGS+=-D_FILE_OFFSET_BITS=64 |