We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
As indicated in the Title, after a successful make and sudo make install "campfire" is not appearing as a protocol option in Pidgin.
make
sudo make install
Thoughts?
BTW - In order for sudo make install to work, I had to update the Makefile in the following way:
From:
install -D $(LIBNAME) $(PLUGIN_DIR_PURPLE)/$(LIBNAME) install --mode=0644 campfire16.png $(DATA_ROOT_DIR_PURPLE)/pixmaps/pidgin/protocols/16/campfire.png install --mode=0644 campfire22.png $(DATA_ROOT_DIR_PURPLE)/pixmaps/pidgin/protocols/22/campfire.png install --mode=0644 campfire48.png $(DATA_ROOT_DIR_PURPLE)/pixmaps/pidgin/protocols/48/campfire.png
To:
install $(LIBNAME) $(PLUGIN_DIR_PURPLE)/$(LIBNAME) install -m 644 campfire16.png $(DATA_ROOT_DIR_PURPLE)/pixmaps/pidgin/protocols/16/campfire.png install -m 644 campfire22.png $(DATA_ROOT_DIR_PURPLE)/pixmaps/pidgin/protocols/22/campfire.png install -m 644 campfire48.png $(DATA_ROOT_DIR_PURPLE)/pixmaps/pidgin/protocols/48/campfire.png
The text was updated successfully, but these errors were encountered:
No branches or pull requests
As indicated in the Title, after a successful
make
andsudo make install
"campfire" is not appearing as a protocol option in Pidgin.Thoughts?
BTW - In order for
sudo make install
to work, I had to update the Makefile in the following way:From:
To:
The text was updated successfully, but these errors were encountered: