diff options
author | Andrea Adami <andrea.adami@gmail.com> | 2009-06-07 00:37:02 +0200 |
---|---|---|
committer | Andrea Adami <andrea.adami@gmail.com> | 2009-06-07 00:37:02 +0200 |
commit | 595a0174db40089ad992bb054c6e694957f35042 (patch) | |
tree | fe91910ff786760dd837122844e4c90444307298 /recipes/xorg-xserver/xserver-kdrive-1.2.0 | |
parent | f999f6777d4dcbd5a65a96e7cd04a72dff5d2ef1 (diff) |
xserver-kdrive-imageon_1.2.0: fix AC_SUBST in configure.ac
- AC_SUBST is documented to only take one variable
- was breaking with autotools_2.63
- bump PR
Diffstat (limited to 'recipes/xorg-xserver/xserver-kdrive-1.2.0')
-rw-r--r-- | recipes/xorg-xserver/xserver-kdrive-1.2.0/split_multiple_AC_SUBST.patch | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/recipes/xorg-xserver/xserver-kdrive-1.2.0/split_multiple_AC_SUBST.patch b/recipes/xorg-xserver/xserver-kdrive-1.2.0/split_multiple_AC_SUBST.patch new file mode 100644 index 0000000000..dfbe730613 --- /dev/null +++ b/recipes/xorg-xserver/xserver-kdrive-1.2.0/split_multiple_AC_SUBST.patch @@ -0,0 +1,15 @@ +Index: xorg-server-1.2.0/configure.ac +=================================================================== +--- xorg-server-1.2.0.orig/configure.ac 2007-12-12 20:57:37.000000000 +0100 ++++ xorg-server-1.2.0/configure.ac 2009-06-06 23:47:54.000000000 +0200 +@@ -1667,7 +1667,9 @@ + DIX_CFLAGS="-DHAVE_DIX_CONFIG_H" + AC_SUBST([DIX_CFLAGS]) + +-AC_SUBST([libdir exec_prefix prefix]) ++AC_SUBST([libdir]) ++AC_SUBST([exec_prefix]) ++AC_SUBST([prefix]) + + # Man page sections - used in config utils & generating man pages + XORG_MANPAGE_SECTIONS |