diff options
author | dancer <dancer> | 2005-12-05 14:24:54 +0000 |
---|---|---|
committer | dancer <dancer> | 2005-12-05 14:24:54 +0000 |
commit | d3de524b320dccb7d1e6d3dbd65dc5da1067564a (patch) | |
tree | 38c1abe706790a4819c4968fe7c43215a87a3ac2 /pbuilder-modules | |
parent | e5da17475f9bcc26f815644dbf30ae38ffa78dc9 (diff) | |
download | pbuilder-d3de524b320dccb7d1e6d3dbd65dc5da1067564a.tar pbuilder-d3de524b320dccb7d1e6d3dbd65dc5da1067564a.tar.gz |
Use readlink -e instead of readlink -f :
* pdebuild-user-mode-linux:
* pdebuild-uml-checkparams:
* pdebuild-checkparams:
* pdebuild: readlink -e instead of readlink -f
* pbuilder-uml-checkparams: readlink -e instead of readlink -f
* pbuilder-modules: readlink -e instead of readlink -f
* pbuilder-createbuildenv: quote HOOKDIR and readlink -e instead of readlink -f.
* pbuilder-checkparams:
* pbuilder-buildpackage: use readlink -e here.
* pbuilder-buildpackage-funcs: use readlink -e instead of readlink -f. 342117
thanks to Markus Kolb
Diffstat (limited to 'pbuilder-modules')
-rw-r--r-- | pbuilder-modules | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pbuilder-modules b/pbuilder-modules index 6a0ada9..2924a82 100644 --- a/pbuilder-modules +++ b/pbuilder-modules @@ -266,7 +266,7 @@ function copy_local_configuration () { if [ ! -f "/etc/$a" ]; then echo "E: /etc/$a does not exist, your setup is insane. fix it" >&2 fi - cp $( readlink -f "/etc/$a" ) "$BUILDPLACE/etc/$a"; + cp $( readlink -e "/etc/$a" ) "$BUILDPLACE/etc/$a"; done } |