Skip to content

Fix up tcsh build #184

Merged
merged 4 commits into from
Nov 8, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions tcsh.be0
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env beesh

# BEE_VERSION tcsh-6.19.00-0
# BEE_VERSION tcsh-6.19.00-1

## this file was created by bee init and should be executed to build a
## bee-package. (Additional hints are located at the end of this file.)
Expand Down Expand Up @@ -53,18 +53,18 @@ SRCURL[0]="http://ftp.funet.fi/pub/mirrors/ftp.astron.com/pub/tcsh/tcsh-${PKGVER
# bee_patch "${@}"
#}

#mee_configure() {
# bee_configure
#}
mee_configure() {
CFLAGS=-fno-optimize-strlen bee_configure
}

#mee_build() {
# bee_build
#}

mee_install() {
bee_install
( cd "${D}"/"${BEE_BINDIR}"; ln -sv tcsh csh )
( cd "${D}"/"${MANDIR}/man1"; ln -sv tcsh.1 csh.1 )
ln -s tcsh "$D/$BINDIR/csh"
ln -s csh.1 "$D/$MANDIR/man1/tcsh"
}
## by default this may be 'make install DESTDIR="${D}"'

Expand Down