* parse.c (trim_and_sub): Since %{...} has not been used for a
long time, there is no point in being able to escape %. However,
make the code able to escape $ by doubling the $ to $$.
Debian #378570
2006-08-16 Tollef Fog Heen <tfheen@err.no>
+ * parse.c (trim_and_sub): Since %{...} has not been used for a
+ long time, there is no point in being able to escape %. However,
+ make the code able to escape $ by doubling the $ to $$.
+ Debian #378570
+
* pkg.c (packages_get_other_cflags, package_get_other_cflags)
(packages_get_I_cflags): Always add all cflags. Debian #340904
/*
- * Copyright (C) 2001, 2002, 2005 Red Hat Inc.
+ * Copyright (C) 2001, 2002, 2005-2006 Red Hat Inc.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
if (p[0] == '$' &&
p[1] == '$')
{
- /* escaped % */
- g_string_append_c (subst, '%');
+ /* escaped $ */
+ g_string_append_c (subst, '$');
p += 2;
}
else if (p[0] == '$' &&