Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Run ldconfig on install #15597

Merged
merged 3 commits into from
Jul 12, 2014
Merged

Run ldconfig on install #15597

merged 3 commits into from
Jul 12, 2014

Conversation

brson
Copy link
Contributor

@brson brson commented Jul 11, 2014

If ldconfig fails it emits a warning. This is very possible when installing
to a non-system directory, so the warning tries to indicate that it may
not be a problem.

brson added 2 commits July 10, 2014 18:16
If ldconfig fails it emits a warning. This is very possible when installing
to a non-system directory, so the warning tries to indicate that it may
not be a problem.
@@ -293,9 +293,11 @@ elif [ "$CFG_OSTYPE" = "Darwin" ]
then
CFG_LD_PATH_VAR=DYLD_LIBRARY_PATH
CFG_OLD_LD_PATH_VAR=$DYLD_LIBRARY_PATH
UNIX=1
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

On OSX I don't seem to have ldconfig installed, perhaps it's only installed by default on linux?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OS X might not have a cache for this stuff.

@brson
Copy link
Contributor Author

brson commented Jul 12, 2014

Updated to only run ldconfig on linux.

bors added a commit that referenced this pull request Jul 12, 2014
If ldconfig fails it emits a warning. This is very possible when installing
to a non-system directory, so the warning tries to indicate that it may
not be a problem.
@bors bors closed this Jul 12, 2014
@bors bors merged commit 9641856 into rust-lang:master Jul 12, 2014
bors added a commit to rust-lang-ci/rust that referenced this pull request Sep 18, 2023
…thand, r=HKalbasi

Field shorthand overwritten in promote local to const assist

Currently, running `promote_local_to_const` on the following:

```rust
struct Foo {
    bar: usize,
}

fn main() {
    let $0bar = 0;
    let foo = Foo { bar };
}
```

Results in:

```rust
struct Foo {
    bar: usize,
}

fn main() {
    const BAR: usize = 0;
    let foo = Foo { BAR };
}
```

But instead should be something like:

```rust
struct Foo {
    bar: usize,
}

fn main() {
    const BAR: usize = 0;
    let foo = Foo { bar: BAR };
}
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants