Product: Fedora https://bugzilla.redhat.com/show_bug.cgi?id=923163 Mathieu Bridon <bochecha@xxxxxxxxxxxxxxxxx> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |bochecha@xxxxxxxxxxxxxxxxx --- Comment #1 from Mathieu Bridon <bochecha@xxxxxxxxxxxxxxxxx> --- I just tried reviewing this package, and it doesn't build: + ./configure --build=x86_64-redhat-linux-gnu --host=x86_64-redhat-linux-gnu --program-prefix= --disable-dependency-tracking --prefix=/usr --exec-prefix=/usr --bindir=/usr/bin --sbindir=/usr/sbin --sysconfdir=/etc --datadir=/usr/share --includedir=/usr/include --libdir=/usr/lib64 --libexecdir=/usr/libexec --localstatedir=/var --sharedstatedir=/var/lib --mandir=/usr/share/man --infodir=/usr/share/info --disable-static /var/tmp/rpm-tmp.4dZ8zy: line 34: ./configure: No such file or directory The problem is your invocation of the %setup macro: %setup -q -c gnome-weather -n gnome-weather This means that rpmbuild will first create a "gnome-weather" folder, then extract the tarball inside. So you end up with the path: gnome-weather/gnome-weather-3.7.92/ The contents of the archive (including the configure file) are in that last subfolder. But rpmbuild will only enter the gnome-weather folder, and as such not find the contents. You could just use the simplest form of the setup macro: %setup -q And that fixes the issue. -- You are receiving this mail because: You are on the CC list for the bug. Unsubscribe from this bug https://bugzilla.redhat.com/token.cgi?t=UvPku9OMfx&a=cc_unsubscribe _______________________________________________ package-review mailing list package-review@xxxxxxxxxxxxxxxxxxxxxxx https://admin.fedoraproject.org/mailman/listinfo/package-review