> Od: Ben Finney <[email protected]> > So, you're trying to build a source package. > > > debian/rules clean > > dh_testdir > > dh_testroot > > rm -f build-stamp configure-stamp > > # Add here commands to clean up after the build process. > > /usr/bin/make PREFIX = /usr clean > > make: *** empty variable name. Stop. > > The command line received the following arguments: > > ‘/usr/bin/make’ ‘PREFIX’ ‘=’ ‘/usr’ ‘clean’ > > If you want to set a variable, you need that as a single argument: > > $(MAKE) PREFIX=/usr clean > > which will result in command-line arguments as: > > ‘/usr/bin/make’ ‘PREFIX=/usr’ ‘clean’ > > Then make will see a single argument setting a variable to a value.
Thank you a lot this wrong syntax was exactly the problem ... regards mira -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected]

