-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
andy5995
committed
Aug 6, 2016
1 parent
8c11ce2
commit a2e890e
Showing
6 changed files
with
388 additions
and
202 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
=== RMW Release Notes === | ||
|
||
-- August 5, 2016 -- | ||
-Version 2016.08.05.01a- | ||
|
||
I'm not seeing a problem anymore with the trash directory string | ||
getting mangled. | ||
|
||
This is a minor update to the last release from 2013. Besides the bug-fix, | ||
I've been working at cleaning up the code, and plan to continue. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
#! /bin/bash | ||
# Wrapper for compilers which do not understand '-c -o'. | ||
|
||
scriptversion=2012-03-05.13; # UTC | ||
scriptversion=2012-10-14.11; # UTC | ||
|
||
# Copyright (C) 1999, 2000, 2003, 2004, 2005, 2009, 2010, 2012 Free | ||
# Software Foundation, Inc. | ||
# Copyright (C) 1999-2013 Free Software Foundation, Inc. | ||
# Written by Tom Tromey <[email protected]>. | ||
# | ||
# This program is free software; you can redistribute it and/or modify | ||
|
@@ -113,6 +112,11 @@ func_cl_dashl () | |
lib=$dir/$lib.lib | ||
break | ||
fi | ||
if test -f "$dir/lib$lib.a"; then | ||
found=yes | ||
lib=$dir/lib$lib.a | ||
break | ||
fi | ||
done | ||
IFS=$save_IFS | ||
|
||
|
Oops, something went wrong.