We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Please consider a method that does not require SU authority to install in Linux user area.
I tried to change follows, I could install with user authority only.
[from] if [ ! -z "$BUILD_DKPRO_INSTALLDIR" ] ; then INSTALLDIR="$BUILD_DKPRO_INSTALLDIR" else echo ... read -e INSTALLDIR echo fi
[to] if [ ! -z "$BUILD_DKPRO_INSTALLDIR" ] ; then export INSTALLDIR="$BUILD_DKPRO_INSTALLDIR" else echo ... read -e INSTALLDIRH export INSTALLDIR="$INSTALLDIRH" echo fi
[from] install: all @mkdir -p $(DESTDIR)/opt/devkitpro/devkitARM/arm-none-eabi/lib @cp -v *.specs *.ld *.mem $(DESTDIR)/opt/devkitpro/devkitARM/arm-none-eabi/lib @cp -rv thumb armv6k *.o $(DESTDIR)/opt/devkitpro/devkitARM/arm-none-eabi/lib
[to] install: all @mkdir -p $(INSTALLDIR)/devkitARM/arm-none-eabi/lib @cp -v *.specs *.ld *.mem $(INSTALLDIR)/devkitARM/arm-none-eabi/lib @cp -rv thumb armv6k *.o $(INSTALLDIR)/devkitARM/arm-none-eabi/lib
[from] install: @mkdir -p $(DESTDIR)/opt/devkitpro/devkitARM @cp -v $(FILES) $(DESTDIR)/opt/devkitpro/devkitARM
[to] install: @mkdir -p $(INSTALLDIR)/devkitARM @cp -v $(FILES) $(INSTALLDIR)/devkitARM
[from] install: @cp -v $(FILES) $(DESTDIR)/opt/devkitpro/devkitPPC
[to] install: @cp -v $(FILES) $(INSTALLDIR)/devkitPPC
Regards.
The text was updated successfully, but these errors were encountered:
We don't really support use of the buildscripts by end users, where possible you should use devkitPro pacman.
If you really don't have the option to use pacman & the official binaries you miss out on the rest of the infrastructure & the portlibs.
If you really, really must then you could always have /opt/devkitpro user writable.
Sorry, something went wrong.
No branches or pull requests
Please consider a method that does not require SU authority to install in Linux user area.
I tried to change follows, I could install with user authority only.
[from]
if [ ! -z "$BUILD_DKPRO_INSTALLDIR" ] ; then
INSTALLDIR="$BUILD_DKPRO_INSTALLDIR"
else
echo
...
read -e INSTALLDIR
echo
fi
[to]
if [ ! -z "$BUILD_DKPRO_INSTALLDIR" ] ; then
export INSTALLDIR="$BUILD_DKPRO_INSTALLDIR"
else
echo
...
read -e INSTALLDIRH
export INSTALLDIR="$INSTALLDIRH"
echo
fi
[from]
install: all
@mkdir -p $(DESTDIR)/opt/devkitpro/devkitARM/arm-none-eabi/lib
@cp -v *.specs *.ld *.mem $(DESTDIR)/opt/devkitpro/devkitARM/arm-none-eabi/lib
@cp -rv thumb armv6k *.o $(DESTDIR)/opt/devkitpro/devkitARM/arm-none-eabi/lib
[to]
install: all
@mkdir -p $(INSTALLDIR)/devkitARM/arm-none-eabi/lib
@cp -v *.specs *.ld *.mem $(INSTALLDIR)/devkitARM/arm-none-eabi/lib
@cp -rv thumb armv6k *.o $(INSTALLDIR)/devkitARM/arm-none-eabi/lib
[from]$(FILES) $ (DESTDIR)/opt/devkitpro/devkitARM
install:
@mkdir -p $(DESTDIR)/opt/devkitpro/devkitARM
@cp -v
[to]$(FILES) $ (INSTALLDIR)/devkitARM
install:
@mkdir -p $(INSTALLDIR)/devkitARM
@cp -v
[from]$(FILES) $ (DESTDIR)/opt/devkitpro/devkitPPC
install:
@cp -v
[to]$(FILES) $ (INSTALLDIR)/devkitPPC
install:
@cp -v
Regards.
The text was updated successfully, but these errors were encountered: