diff options
author | Nikita Karetnikov <nikita@karetnikov.org> | 2013-02-15 13:50:45 +0000 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-02-27 20:55:42 +0100 |
commit | 6ec8f7778f3f44f842782ecf164885ef6dbb1e4f (patch) | |
tree | f330d9fbe49635e261429f565a9ea68cf77d7a1c /gnu/packages | |
parent | da9bf2efc56266d8717496c303a6d4b16de94b63 (diff) | |
download | patches-6ec8f7778f3f44f842782ecf164885ef6dbb1e4f.tar patches-6ec8f7778f3f44f842782ecf164885ef6dbb1e4f.tar.gz |
gnu: gcc: Remove extraneous newline in 'LIB_SPEC'.
* gnu/packages/base.scm (gcc-4.7): Remove trailing newline when patching
'LIB_SPEC'.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/base.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm index 23bf00b241..5c39ec3db8 100644 --- a/gnu/packages/base.scm +++ b/gnu/packages/base.scm @@ -449,7 +449,7 @@ BFD (Binary File Descriptor) library, `gprof', `nm', `strip', etc.") ;; RUNPATH to GCC even when `libgcc_s' is not NEEDED. ;; There's not much that can be done to avoid it, though. (format #f "#define LIB_SPEC \"-L~a/lib %{!static:-rpath=~a/lib \ -%{!static-libgcc:-rpath=~a/lib64 -rpath=~a/lib}} \" ~a~%" +%{!static-libgcc:-rpath=~a/lib64 -rpath=~a/lib}} \" ~a" libc libc out out suffix)) (("#define STARTFILE_SPEC.*$" line) (format #f "#define STANDARD_STARTFILE_PREFIX_1 \"~a/lib\" |