diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-05-31 01:53:33 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-05-31 01:54:26 +0200 |
commit | b378297798ce207a47d348788785266b0047db68 (patch) | |
tree | e3529bff4792fd1598bd33d7a518107cb49120fa /gnu/packages/admin.scm | |
parent | b40ba288f139787a447707aff16b8f06f1e05f04 (diff) |
gnu: opendoas: Don't pass unused target to ./configure.
* gnu/packages/admin.scm (opendoas)[arguments]: Remove ‘--target=…’ from
the #:configure-flags for now.
Diffstat (limited to 'gnu/packages/admin.scm')
-rw-r--r-- | gnu/packages/admin.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index 0bc1d160fb..2bd1922fea 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -1488,7 +1488,8 @@ commands and their arguments.") #t))) #:configure-flags (list (string-append "--prefix=" (assoc-ref %outputs "out")) - (string-append "--target=" (or ,(%current-target-system) "")) + ;; Nothing is done with this value (yet?) but it's supported. + ;; (string-append "--target=" (or ,(%current-target-system) "")) "--with-timestamp") ;; Compiler choice is not carried over from the configure script. #:make-flags |