-
Notifications
You must be signed in to change notification settings - Fork 4
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
[WIP] Fixed installation process by following GNU coding standards #66
Closed
Conversation
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
1 task
alquerci
force-pushed
the
feature/gnu_makefile
branch
15 times, most recently
from
October 3, 2014 09:46
aa78939
to
19aa0a2
Compare
alquerci
force-pushed
the
feature/gnu_makefile
branch
5 times, most recently
from
October 6, 2014 15:05
d6187da
to
12a6b7d
Compare
alquerci
force-pushed
the
master
branch
2 times, most recently
from
October 7, 2014 19:59
635047d
to
4be517a
Compare
alquerci
force-pushed
the
feature/gnu_makefile
branch
from
October 8, 2014 07:41
12a6b7d
to
b467ce7
Compare
alquerci
added a commit
to alquerci/cyg-apt
that referenced
this pull request
Oct 12, 2014
… standards (alquerci) This PR was squashed before being merged into the 1.1-dev branch (closes nylen#66). Discussion ---------- | Q | A | --------------- | --- | Bug fix? | yes (some unexpected make behaviours) | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Related tickets | | License | GNU GPLv3 In order to come as close as possible to the [GNU coding standards][2]. The python library of this package is private so it does not install under the standard python `site-package` but on [`$(DESTDIR)$(pkglibdir)`][1]. - [x] added a check for `$(DESTDIR)` feature on the `distcheck` target - [ ] update the doc - [ ] clean up commit history - [ ] optionals: - [x] maybe added a small configure script [ref][0] - [ ] added uninstall feature [0]: https://github.com/nylen/cyg-apt/blob/431821aa8a3f2d5317424e7eebfbf39cc60eb760/TODO#L9 [1]: https://github.com/alquerci/cyg-apt/blob/e10d29636f227b45fe2d46b995324152034c648a/bootstrap.mk#L112 [2]: https://www.gnu.org/prep/standards/html_node/Makefile-Conventions.html#Makefile-Conventions Commits ------- 80ad1b7 [WIP] Fixed installation process by following GNU coding standards
alquerci
force-pushed
the
feature/gnu_makefile
branch
from
October 14, 2014 22:13
b467ce7
to
626c609
Compare
4 tasks
Closing in favour of #69 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
In order to come as close as possible to the GNU coding standards.
The python library of this package is private so it does not install under the standard python
site-package
but on$(DESTDIR)$(pkglibdir)
.$(DESTDIR)
feature on thedistcheck
target