Browse Source

* reimplemented automake.conf to create share/automake in a cleaner

and safer way


git-svn-id: svn://svn.opensde.net/opensde/package/trunk@21417 10447126-35f2-4685-b0cf-6dd780d3921f
early
Alejandro Mery 18 years ago
parent
commit
8e30e65024
  1. 8
      base/automake/automake.conf

8
base/automake/automake.conf

@ -3,8 +3,6 @@
# #
# Filename: package/.../automake/automake.conf # Filename: package/.../automake/automake.conf
# Copyright (C) 2007 The OpenSDE Project # Copyright (C) 2007 The OpenSDE Project
# Copyright (C) 2004 - 2006 The T2 SDE Project
# Copyright (C) 1998 - 2003 Clifford Wolf
# #
# More information can be found in the files COPYING and README. # More information can be found in the files COPYING and README.
# #
@ -14,4 +12,8 @@
# GNU General Public License can be found in the file COPYING. # GNU General Public License can be found in the file COPYING.
# --- SDE-COPYRIGHT-NOTE-END --- # --- SDE-COPYRIGHT-NOTE-END ---
hook_add postmake 5 "rm -rf $root$datadir/automake ; ln -s automake-${ver} $root$datadir/automake" automake_symlink() {
local v=$( echo $ver | cut -d'.' -f'1-2' )
ln -snf automake-$v $root$datadir/automake
}
hook_add postmake 5 "automake_symlink"

Loading…
Cancel
Save