Michael Schroeder
Michael Schroeder
Just for the record: I don't really like this auto-migration. I would be more happy if rpm just checks the new location first and maybe writes a warning if it...
Not really. I just dislike such automatic config file migration, as it tends to surprise the users. Do any other tools do this? But feel free to ignore me ;-)
The documentation talks a lot about v4 / v6 packages, which probably makes not much sense in the rpm-4.20 context.
So I always need to use `--rpmv6` if I want multiple signatures?
No, please do not change this. `%{macro:something}` is a way to expand a macro with exactly one argument. gsub needs more than one argument, thus the error.
See also: ``` $ rpm --eval '%{len foo bar}' --eval '%{len:foo bar}' 3 7 ```
That's caused by %len being mapped to lua's string.len() function, and lua does not complain about the extra arg: ``` $ lua > print(string.len("foo", "bar")) 3 > ```
Hey, I like the rpmdb keystore!