Changeset 107
- Timestamp:
- 06/22/07 13:03:21 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/debbuild
r106 r107 677 677 $prepscript .= " -s <$topdir/SOURCES/".$pkgdata{main}{"patch$patchnum"}."\n"; 678 678 } else { 679 $prepscript .= $_;679 $prepscript .= expandmacros($_,'gp'); 680 680 } 681 681 next LINE; … … 690 690 $buildscript .= expandmacros($_,'mgbp'); 691 691 } else { 692 $buildscript .= $_;692 $buildscript .= expandmacros($_.'gp'); 693 693 } 694 694 next LINE; … … 699 699 $installscript .= expandmacros($_,'igbp'); 700 700 } else { 701 $installscript .= $_;701 $installscript .= expandmacros($_,'gp'); 702 702 } 703 703 next LINE; … … 705 705 706 706 if ($stage eq 'clean') { 707 $cleanscript .= $_;707 $cleanscript .= expandmacros($_,'gp'); 708 708 next LINE; 709 709 } # clean 710 710 711 711 if ($stage eq 'prepost') { 712 $pkgdata{$subname}{$scriptlet} .= $_;712 $pkgdata{$subname}{$scriptlet} .= expandmacros($_,'gp'); 713 713 next LINE; 714 714 } # prepost … … 774 774 775 775 if ($stage eq 'changelog') { 776 # this is one of the few places we do NOT generally want to replace macros... 776 777 $pkgdata{main}{changelog} .= $_; 777 778 }
Note:
See TracChangeset
for help on using the changeset viewer.