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

Fixing #2 and wrong paths on xubuntu. #3

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ target_link_libraries(thunar-dropbox ${GIO_LIBRARIES})

# Installation
install(TARGETS thunar-dropbox
DESTINATION "lib/thunarx-3")
DESTINATION "thunarx-3")
install(FILES "data/icons/hicolor/16x16/apps/thunar-dropbox.png"
DESTINATION "share/icons/hicolor/16x16/apps")
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ The plugin is available in the repositories of most distributions, check it out
</a>

### From source
cmake -B build -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX:PATH=/usr .
cmake -B build -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX:PATH=/usr/lib .
cmake --build build

The first call to cmake configures the build system. The -B flag specifies the output directory, here _build_. The dot at the end is the path to the directory containing _CMakeLists.txt_.
Expand Down
2 changes: 1 addition & 1 deletion src/tdp-provider.c
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ static GList * tdp_provider_get_file_actions(
g_free(line);
}
else if (status == G_IO_STATUS_AGAIN) {
break;
continue;
}
else if (status == G_IO_STATUS_ERROR) {
break;
Expand Down