-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Include user documentation with standard tarballs - this means you no…
… longer need Doxygen to build fish, and should make life easier for packagers darcs-hash:20060612110743-ac50b-0dcfea7ce14856840ee66afb2c70bb23fcbfee6f.gz
- Loading branch information
1 parent
d79e8c7
commit 038dcca
Showing
2 changed files
with
4 additions
and
2 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 |
---|---|---|
|
@@ -519,17 +519,19 @@ depend: | |
# | ||
# Uses install instead of mkdir so build won't fail if the directory | ||
# exists | ||
fish-@[email protected]: $(DOC_SRC_DIR_FILES) $(MAIN_DIR_FILES) $(ETC_DIR_FILES) $(TEST_DIR_FILES) $(SHARE_DIR_FILES) $(FUNCTIONS_DIR_FILES) $(COMPLETIONS_DIR_FILES) ChangeLog | ||
fish-@[email protected]: $(DOC_SRC_DIR_FILES) $(MAIN_DIR_FILES) $(ETC_DIR_FILES) $(TEST_DIR_FILES) $(SHARE_DIR_FILES) $(FUNCTIONS_DIR_FILES) $(COMPLETIONS_DIR_FILES) ChangeLog user_doc | ||
rm -rf fish-@PACKAGE_VERSION@ | ||
$(INSTALL) -d fish-@PACKAGE_VERSION@ | ||
$(INSTALL) -d fish-@PACKAGE_VERSION@/doc_src | ||
$(INSTALL) -d fish-@PACKAGE_VERSION@/user_doc | ||
$(INSTALL) -d fish-@PACKAGE_VERSION@/etc | ||
$(INSTALL) -d fish-@PACKAGE_VERSION@/share | ||
$(INSTALL) -d fish-@PACKAGE_VERSION@/share/completions | ||
$(INSTALL) -d fish-@PACKAGE_VERSION@/share/functions | ||
$(INSTALL) -d fish-@PACKAGE_VERSION@/tests | ||
$(INSTALL) -d fish-@PACKAGE_VERSION@/po | ||
cp -f $(DOC_SRC_DIR_FILES) fish-@PACKAGE_VERSION@/doc_src | ||
cp -rf user_doc fish-@PACKAGE_VERSION@/ | ||
cp -f $(MAIN_DIR_FILES) fish-@PACKAGE_VERSION@/ | ||
cp -f $(ETC_DIR_FILES) fish-@PACKAGE_VERSION@/etc/ | ||
cp -f $(SHARE_DIR_FILES) fish-@PACKAGE_VERSION@/share/ | ||
|