Skip to content

Commit

Permalink
Top level dir no longer passed to MakeRelease
Browse files Browse the repository at this point in the history
  • Loading branch information
Janet B. Anderson committed Sep 4, 1996
1 parent 3001f7e commit d67eb28
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
9 changes: 8 additions & 1 deletion MakeRelease
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
# [-b] - For fully built release
#
# $Log$
# Revision 1.8 1996/07/02 13:45:09 jba
# Added dbd and base/config dirs. Removed epics/config and base/rec.
#
# Revision 1.7 1996/06/25 21:54:42 jba
# Command line parm now base dir
#
Expand Down Expand Up @@ -75,9 +78,13 @@ fi


FULLY_BUILT=NO
if [ "${2}" = "-b" ]; then
if [ "${1}" = "-b" ]; then
FULLY_BUILT=YES
shift
if [ "${1}" != "." ]; then
echo "TOP: Cannot create a fully built release.";
exit 1;
fi
fi

# Retrieve EPICS release string from src/include/epicsVersion.h
Expand Down
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ include $(TOP)/config/RULES_TOP

release:
@echo TOP: Creating Release...
@./MakeRelease ${TOP}
@./MakeRelease

built_release: install
built_release:
@echo TOP: Creating Fully Built Release...
@./MakeRelease ${TOP} -b
@./MakeRelease -b $(INSTALL_LOCATION)

uninstall::
@DIR1=`pwd`;cd $(INSTALL_LOCATION);DIR2=`pwd`;cd $$DIR1;\
Expand Down

0 comments on commit d67eb28

Please sign in to comment.