| Summary: | configure: line 5805: syntax error near unexpected token `-Qunused-arguments' | ||||||
|---|---|---|---|---|---|---|---|
| Product: | Portable OpenSSH | Reporter: | Jean-christophe Manciot <actionmystique> | ||||
| Component: | Build system | Assignee: | Assigned to nobody <unassigned-bugs> | ||||
| Status: | CLOSED INVALID | ||||||
| Severity: | critical | CC: | dtucker | ||||
| Priority: | P5 | ||||||
| Version: | 7.2p1 | ||||||
| Hardware: | amd64 | ||||||
| OS: | Linux | ||||||
| Attachments: |
|
||||||
I can't reproduce this. Which compiler (and version) and what version of autoconf are you using?
("aclocal -I m4" isn't correct as there's no m4 directory. I normally just run "autoreconf" rather than what you have.)
I replaced all my calls to build configure by autoreconf, and I can build the package now. Thanks :) Close all resolved bugs after 7.3p1 release |
Created attachment 2817 [details] Whole log Ubuntu 16.04 4.4.0-22 OpenSSH commit 39c0cecaa188a37a2e134795caa68e03f3ced592 echo -------- echo Cleaning echo -------- cd git-openssh git reset --hard git clean -fxd :/ git fetch --progress --prune origin echo ------------------ echo "Making ./configure" echo ------------------ libtoolize aclocal -I m4 autoheader autoconf echo ----------- echo Configuring echo ----------- ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var ... checking if gcc supports -Werror... yes ./configure: line 5805: syntax error near unexpected token `-Qunused-arguments' ./configure: line 5805: ` OSSH_CHECK_CFLAG_COMPILE(-Qunused-arguments)' Should I make configure differently? Whole log is attached.