Dirk Mueller
b688b17ada
* avoid auxv parsing for any platform other than powerpc - add config-guess-sub-update.diff * update config.guess/sub for aarch64 support OBS-URL: https://build.opensuse.org/package/show/Base:System/rpm?expand=0&rev=249
16 lines
499 B
Diff
16 lines
499 B
Diff
--- build/parsePrep.c.old
|
|
+++ build/parsePrep.c
|
|
@@ -351,6 +351,12 @@
|
|
|
|
appendStringBuf(spec->prep, getStringBuf(after));
|
|
|
|
+ {
|
|
+ char* buf = strdup("for f in config.guess config.sub; do test /usr/share/automake-1.12/$f && ln -sf /usr/share/automake-1.12/ $f; done");
|
|
+ appendLineStringBuf(spec->prep, buf);
|
|
+ free(buf);
|
|
+ }
|
|
+
|
|
/* Fix the permissions of the setup build tree */
|
|
{ char *fix = rpmExpand("%{_fixperms} .", NULL);
|
|
if (fix && *fix != '%') {
|