diff options
Diffstat (limited to 'meta/packages/base-passwd/base-passwd-3.5.9/configure.patch')
-rw-r--r-- | meta/packages/base-passwd/base-passwd-3.5.9/configure.patch | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/meta/packages/base-passwd/base-passwd-3.5.9/configure.patch b/meta/packages/base-passwd/base-passwd-3.5.9/configure.patch new file mode 100644 index 0000000000..a9adb1e9e2 --- /dev/null +++ b/meta/packages/base-passwd/base-passwd-3.5.9/configure.patch | |||
@@ -0,0 +1,23 @@ | |||
1 | |||
2 | # | ||
3 | # Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher | ||
4 | # | ||
5 | |||
6 | --- base-passwd/configure.in~configure | ||
7 | +++ base-passwd/configure.in | ||
8 | @@ -1,5 +1,6 @@ | ||
9 | dnl Initialize the autoconf process | ||
10 | -AC_INIT(update-passwd.c) | ||
11 | +AC_INIT | ||
12 | +AC_CONFIG_SRCDIR([update-passwd.c]) | ||
13 | AC_CONFIG_HEADER(config.h) | ||
14 | AC_PREFIX_DEFAULT(/usr) | ||
15 | |||
16 | @@ -12,5 +13,6 @@ | ||
17 | AC_CHECK_FUNCS(putgrent) | ||
18 | |||
19 | dnl Finally output everything | ||
20 | -AC_OUTPUT(Makefile) | ||
21 | +AC_CONFIG_FILES([Makefile]) | ||
22 | +AC_OUTPUT | ||
23 | |||