Changeset 2834 for palm/trunk/SCRIPTS/palmbuild
- Timestamp:
- Feb 23, 2018 2:04:07 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SCRIPTS/palmbuild
r2732 r2834 27 27 # ----------------- 28 28 # $Id: palmbuild 2718 2018-01-02 08:49:38Z maronga $ 29 # "fname" renamed to "jobname" 30 # 31 # 2718 2018-01-02 08:49:38Z maronga 29 32 # Corrected "Former revisions" section 30 33 # … … 113 116 do 114 117 case $option in 115 (d) fname=$OPTARG;;118 (d) jobname=$OPTARG;; 116 119 (h) host_configuration=$OPTARG;; 117 120 (m) makefile=$OPTARG;; … … 126 129 127 130 131 # FOR COMPATIBILITY REASONS SET OLD ENVIRONMENT VARIABLE 132 export fname=$jobname 133 134 128 135 # BUILD THE CONFIGURATION-FILE NAME AND THE SOURCES_FOR_RUN-FOLDER NAME 129 136 config_file=.palm.config.$host_configuration 130 sources_for_run_catalog=SOURCES_FOR_RUN_${host_configuration}_$ fname137 sources_for_run_catalog=SOURCES_FOR_RUN_${host_configuration}_$jobname 131 138 132 139 … … 482 489 483 490 # NEXT IS THE BRANCH FOR CREATING THE MAKE_DEPOSITORY_... 484 if [[ "$ fname" = "" ]]491 if [[ "$jobname" = "" ]] 485 492 then 486 493 … … 608 615 # INCLUDING E.G. USER-INTERFACE ROUTINES. ALSO ADD OTHER UTILITY EXECUTABLES. EVERYTHING IS 609 616 # COLLECTED IN DIRECTORY SOURCES_FOR_RUN_... 610 elif [[ "$ fname" != "" ]]617 elif [[ "$jobname" != "" ]] 611 618 then 612 619 … … 616 623 if [[ $(grep -c "sources for run found" ${host_configuration}_last_make_protocol) != 0 && $use_existing_sources_folder = true ]] 617 624 then 618 printf "\a\n *** compiled sources for run \"$ fname\" found on remote host in folder"625 printf "\a\n *** compiled sources for run \"$jobname\" found on remote host in folder" 619 626 printf "\n ${fast_io_catalog}/${sources_for_run_catalog}" 620 627 printf "\n will be used!" … … 697 704 # NEXT IS THE BRANCH FOR CREATING THE MAKE_DEPOSITORY_... ON THE 698 705 # LOCAL HOST 699 if [[ "$ fname" = "" ]]706 if [[ "$jobname" = "" ]] 700 707 then 701 708 … … 806 813 if [[ -d ${fast_io_catalog}/${sources_for_run_catalog} && $use_existing_sources_folder = true ]] 807 814 then 808 printf "\a\n *** compiled sources for run \"$ fname\" found on local host in folder"815 printf "\a\n *** compiled sources for run \"$jobname\" found on local host in folder" 809 816 printf "\n ${fast_io_catalog}/${sources_for_run_catalog}" 810 817 printf "\n will be used!"
Note: See TracChangeset
for help on using the changeset viewer.