-
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.
Signed-off-by: Mike Detwiler <[email protected]>
- Loading branch information
Showing
9 changed files
with
38 additions
and
6 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 |
---|---|---|
|
@@ -4,6 +4,7 @@ SUBDIRS = autoconf \ | |
bash \ | ||
coreutils \ | ||
go \ | ||
info \ | ||
man \ | ||
readline \ | ||
ssh \ | ||
|
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 |
---|---|---|
@@ -1,6 +1,5 @@ | ||
# .gitignore | ||
|
||
# generated data files | ||
info.sh | ||
python.sh | ||
zz-path.sh |
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
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Makefile.am | ||
|
||
SUBDIRS = profile.d |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# .gitignore | ||
|
||
# generated data files | ||
info.sh |
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Makefile.am | ||
|
||
include $(top_srcdir)/rules.mk | ||
|
||
# data/script variables | ||
info = info.sh | ||
|
||
# data/scripts generated by make (require explicit distribution of source file) | ||
make_data = $(info) | ||
|
||
$(make_data): Makefile | ||
|
||
profile_DATA = $(make_data) | ||
|
||
# variables to support building our output | ||
make_output = $(make_data) | ||
|
||
make_sources = $(addsuffix .in,$(make_output)) | ||
|
||
# explicit source file distribution | ||
EXTRA_DIST = $(make_sources) | ||
|
||
CLEANFILES = $(make_output) | ||
|
||
# sed command to build data/scripts | ||
EDIT = -e 's:@infodir[@]:$(infodir):g' |
File renamed without changes.