Skip to content

tcsh: Fix build of version 6.19.00 #153

Closed
wants to merge 1 commit into from
Closed
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
14 changes: 7 additions & 7 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 All @@ -15,7 +15,7 @@ SRCURL[0]="http://ftp.funet.fi/pub/mirrors/ftp.astron.com/pub/tcsh/tcsh-${PKGVER
## Add URLs/pathes to patch files to the PATCHURL array.
## The sources will be patched in the order of the array.

# PATCHURL+=()
PATCHURL[0]='/src/mariux/patches/tcsh.nobuiltincolorls.diff'

###############################################################################
## Add filename patterns to the EXCLUDE array of files that should not
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=-O1 bee_configure
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do you have more details please? Is there an upstream bug report?

}

#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 )
( cd ${D}/${BINDIR}; ln -sv tcsh csh )
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please do one commit per logical change.

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

Expand Down