Changeset d56adcc
- Timestamp:
- 05/27/2007 04:00:46 PM (17 years ago)
- Branches:
- 10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 12.2, 6.3, 6.3-rc1, 6.3-rc2, 6.3-rc3, 7.10, 7.4, 7.5, 7.6, 7.6-blfs, 7.6-systemd, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gimp3, gnome, kde5-13430, kde5-14269, kde5-14686, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, systemd-11177, systemd-13485, trunk, upgradedb, xry111/for-12.3, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/spidermonkey128, xry111/test-20220226, xry111/xf86-video-removal
- Children:
- 8bb9b01e
- Parents:
- 0c5512d
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
general.ent
r0c5512d rd56adcc 4 4 --> 5 5 6 <!ENTITY day "2 5"> <!-- Always 2 digits -->6 <!ENTITY day "26"> <!-- Always 2 digits --> 7 7 <!ENTITY month "05"> <!-- Always 2 digits --> 8 8 <!ENTITY year "2007"> -
introduction/welcome/changelog.xml
r0c5512d rd56adcc 43 43 44 44 <listitem> 45 <para>May 26th, 2007</para> 46 <itemizedlist> 47 <listitem> 48 <para>[dnicholson] - Fixed the Bash Shell Startup files to find 49 the directories in /opt correctly. Thanks to Fix for the report.</para> 50 </listitem> 51 </itemizedlist> 52 </listitem> 53 54 <listitem> 45 55 <para>May 25th, 2007</para> 46 56 <itemizedlist> -
postlfs/config/profile.xml
r0c5512d rd56adcc 221 221 pathprepend /usr/local/sbin 222 222 fi 223 for directory in $(find /opt/*/lib/pkgconfig -type d 2>/dev/null); do 224 pathappend $directory PKG_CONFIG_PATH 223 224 for dir in /opt{,/*}/lib/pkgconfig; do 225 [ -d "$dir" ] || continue 226 pathappend $dir PKG_CONFIG_PATH 225 227 done 226 for directory in $(find /opt/*/bin -type d 2>/dev/null); do 227 pathappend $directory 228 for dir in /opt{,/*}/bin; do 229 [ -d "$dir" ] || continue 230 pathappend $dir 228 231 done 232 unset dir 233 229 234 if [ -d ~/bin ]; then 230 235 pathprepend ~/bin
Note:
See TracChangeset
for help on using the changeset viewer.