Skip to content

Commit 36d2d82

Browse files
committed
Fix quotes
1 parent f9df4ff commit 36d2d82

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

docs/meson.build

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ custom_target(
1515
command: [
1616
pod2man,
1717
'--name=dunst',
18-
'--center="Dunst Reference"',
18+
'--center=Dunst Reference',
1919
'--section=1',
2020
pod2man_version_arg,
2121
'@INPUT@',
@@ -32,7 +32,7 @@ custom_target(
3232
command: [
3333
pod2man,
3434
'--name=dunst',
35-
'--center="Dunst Reference"',
35+
'--center=Dunst Reference',
3636
'--section=5',
3737
pod2man_version_arg,
3838
'@INPUT@',
@@ -49,7 +49,7 @@ custom_target(
4949
command: [
5050
pod2man,
5151
'--name=dunstctl',
52-
'--center="Dunstctl Reference"',
52+
'--center=Dunstctl Reference',
5353
'--section=1',
5454
pod2man_version_arg,
5555
'@INPUT@',
@@ -66,7 +66,7 @@ custom_target(
6666
command: [
6767
pod2man,
6868
'--name=dunstify',
69-
'--center="Dunstify Reference"',
69+
'--center=Dunstify Reference',
7070
'--section=1',
7171
pod2man_version_arg,
7272
'@INPUT@',

src/dunst.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -348,14 +348,20 @@ void usage(int exit_status)
348348
void print_version(void)
349349
{
350350
printf("Dunst - A customizable and lightweight notification-daemon %s\n", VERSION);
351+
#ifdef _CCDATE
351352
printf("Compiled on %s with the following options:\n", STR_TO(_CCDATE));
353+
#endif
352354

353355
printf("X11 support: %s\n", X11_SUPPORT ? "enabled" : "disabled");
354356
printf("Wayland support: %s\n", WAYLAND_SUPPORT ? "enabled" : "disabled");
355357
printf("SYSCONFDIR set to: %s\n", SYSCONFDIR);
356358

359+
#ifdef _CFLAGS
357360
printf("Compiler flags: %s\n", STR_TO(_CFLAGS));
361+
#endif
362+
#ifdef _LDFLAGS
358363
printf("Linker flags: %s\n", STR_TO(_LDFLAGS));
364+
#endif
359365
exit(EXIT_SUCCESS);
360366
}
361367

0 commit comments

Comments
 (0)