]> git.pld-linux.org Git - packages/suspend-utils.git/blob - suspend-utils-build.patch
- updated plymouth patch to new plymouth API
[packages/suspend-utils.git] / suspend-utils-build.patch
1 diff -urN suspend-utils-1.0.g668c5f7.org/configure.ac suspend-utils-1.0.g668c5f7/configure.ac
2 --- suspend-utils-1.0.g668c5f7.org/configure.ac 2012-09-15 22:23:44.000000000 +0200
3 +++ suspend-utils-1.0.g668c5f7/configure.ac     2013-07-02 22:05:30.884207944 +0200
4 @@ -9,7 +9,7 @@
5  AC_PREREQ([2.59])
6  AC_INIT([suspend-utils], [1.0])
7  AM_INIT_AUTOMAKE([${PACKAGE_NAME}], [${PACKAGE_VERSION}])
8 -AM_CONFIG_HEADER([config.h])
9 +AC_CONFIG_HEADERS([config.h])
10  AC_CONFIG_SRCDIR([suspend.c])
11  AC_CONFIG_MACRO_DIR([m4])
12  
13 diff -urN suspend-utils-1.0.org/bootsplash.c suspend-utils-1.0/bootsplash.c
14 --- suspend-utils-1.0.org/bootsplash.c  2011-03-07 00:24:15.000000000 +0100
15 +++ suspend-utils-1.0/bootsplash.c      2013-07-02 22:14:48.196673333 +0200
16 @@ -118,7 +118,7 @@
17  {
18         int ret;
19         bootsplash_to_verbose();
20 -       printf(prompt);
21 +       printf("%s", prompt);
22         ret = getchar();
23         bootsplash_to_silent();
24  
25 diff -urN suspend-utils-1.0.org/splash.c suspend-utils-1.0/splash.c
26 --- suspend-utils-1.0.org/splash.c      2011-03-07 00:24:15.000000000 +0100
27 +++ suspend-utils-1.0/splash.c  2013-07-02 22:14:40.543075949 +0200
28 @@ -53,7 +53,7 @@
29  
30  static int splash_dialog(const char *prompt) 
31  {
32 -       printf(prompt);
33 +       printf("%s", prompt);
34         return getchar();
35  }
36  
This page took 0.044119 seconds and 3 git commands to generate.